aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/composer/composer.js
diff options
context:
space:
mode:
authorValerio Virgillito2012-02-08 22:15:41 -0800
committerValerio Virgillito2012-02-08 22:15:41 -0800
commitc7df002135328edac03e72a1e4b331b2c72667f8 (patch)
treeee50509df494b069d1769b7b54afd83fd0178e64 /node_modules/montage/ui/composer/composer.js
parent725c54ff4af40f70b7dbd4508da34d2909cea8bd (diff)
parent35ad4d6d2fac4432046141c63c0209cf3d00be5c (diff)
downloadninja-c7df002135328edac03e72a1e4b331b2c72667f8.tar.gz
Merge branch 'refs/heads/master' into components
Diffstat (limited to 'node_modules/montage/ui/composer/composer.js')
-rw-r--r--node_modules/montage/ui/composer/composer.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/node_modules/montage/ui/composer/composer.js b/node_modules/montage/ui/composer/composer.js
index 2f91bb22..eee7be67 100644
--- a/node_modules/montage/ui/composer/composer.js
+++ b/node_modules/montage/ui/composer/composer.js
@@ -40,6 +40,20 @@ exports.Composer = Montage.create(Montage, /** @lends module:montage/ui/composer
40 } 40 }
41 }, 41 },
42 42
43
44 /**
45 * This property controls when a composer's load method is called. If `false`
46 * the composer's load method is called immediately as part of the next draw
47 * cycle after addComposer has been called on its associated component. If
48 * `true` loading of the composer is delayed until its associated component
49 * has prepareForActivationEvents called.
50 * @property
51 * @default false
52 */
53 lazyLoad: {
54 value: false
55 },
56
43 _needsFrame: { 57 _needsFrame: {
44 value: false 58 value: false
45 }, 59 },