Sha256: 5f9c6235cc928c11379ba5ca582526ab93fcd4cbf61fa823940c2a1f760ff3c2
Contents?: true
Size: 1.04 KB
Versions: 5
Compression:
Stored size: 1.04 KB
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2011 Strobe Inc. and contributors. // Portions ©2008-2010 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. 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.Responder.extend(SC.ResponderContext, /** SC.Application.prototype */ { });
Version data entries
5 entries across 5 versions & 2 rubygems