Sha256: e88966b5b5ba27a564c67e8409aba5b346bd3adb2f05ed3647a922dc9447ddc7
Contents?: true
Size: 962 Bytes
Versions: 26
Compression:
Stored size: 962 Bytes
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2011 Strobe Inc. and contributors. // Portions ©2008-2011 Apple Inc. All rights reserved. // License: Licensed under MIT license (see license.js) // ========================================================================== // ========================================================================== // Project: SC.pageFilesController // ========================================================================== /*globals SC */ /** @class in `suppressMain` mode all page files register with this array controller @extends SC.Object */ SC.pageFilesController = SC.ArrayController.create( /** @scope SC.pageFilesController.prototype */ { }) ; SC.pageFilesController.mixin({ pages: [], register: function(page){ SC.pageFilesController.pages.pushObject(page); } });
Version data entries
26 entries across 26 versions & 1 rubygems