Sha256: ee00037e887f00e6cac00d855195396f8c4bc4e20e5494bedb5eb4c5ecf534dc
Contents?: true
Size: 1.08 KB
Versions: 9
Compression:
Stored size: 1.08 KB
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2009 Sprout Systems, Inc. and contributors. // Portions ©2008-2009 Apple, Inc. All rights reserved. // License: Licened under MIT license (see license.js) // ========================================================================== sc_require('system/responder_context'); /** @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. h2. Example {{{ Contacts = SC.Application.create({ store: SC.Store.create(SC.Record.fixtures), // add other useful properties here }); }}} h2. Sending Events You can send actions and events down an application-level responder chain by @extends SC.ResponderContext @since SproutCore 1.0 */ SC.Application = SC.ResponderContext.extend(/** SC.Application.prototype */ { });
Version data entries
9 entries across 9 versions & 1 rubygems