Sha256: a1786ad5c651c4f62dcffd3b5bf8812359198f5e1cc95d655208bf9ed0a00291
Contents?: true
Size: 952 Bytes
Versions: 11
Compression:
Stored size: 952 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 */ /** 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
11 entries across 11 versions & 1 rubygems