Sha256: 25e1ce0847bee46bd35d601f29312cd5b182cbc369214206fe93d83d7611e5be
Contents?: true
Size: 1.02 KB
Versions: 10
Compression:
Stored size: 1.02 KB
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 }); ## 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.Responder.extend(SC.ResponderContext, /** SC.Application.prototype */ { });
Version data entries
10 entries across 10 versions & 1 rubygems