Sha256: b4b5b10fc6d2906d787dd55f3ffc7d729c4dd87fda740691827aac908c4bdf92
Contents?: true
Size: 940 Bytes
Versions: 26
Compression:
Stored size: 940 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) // ========================================================================== /** @class The root object for a SproutCore application. Usually you will create a single SC.Application instance as your root namespace. SC.Application is required if you intend to use SC.Responder to route events. ## Example Contacts = SC.Application.create({ store: SC.Store.create(SC.Record.fixtures), // add other useful properties here }); @extends SC.ResponderContext @since SproutCore 1.0 */ SC.Application = SC.Responder.extend(SC.ResponderContext, /** SC.Application.prototype */ { });
Version data entries
26 entries across 26 versions & 1 rubygems