From 67270eecb37d15ff4550cfa3f21fa549d97d5e73 Mon Sep 17 00:00:00 2001 From: Patrick Moore Date: Mon, 13 Jul 2015 16:18:35 -0700 Subject: [PATCH] Docs: Assets are not shared between packages [stubailo: edits] --- docs/client/full-api/api/assets.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/client/full-api/api/assets.md b/docs/client/full-api/api/assets.md index d4004e9a48..18e33f9243 100644 --- a/docs/client/full-api/api/assets.md +++ b/docs/client/full-api/api/assets.md @@ -17,4 +17,5 @@ code can read `data.txt` by running: var data = Assets.getText('nested/data.txt'); -{{/template}} \ No newline at end of file +Note: Packages can only access their own assets. If you need to read the assets of a different package, or of the enclosing app, you need to get a reference to that package's `Assets` object. +{{/template}}