Sha256: 9b9bdaf54b11bc5df6f307550763368b4368143735048019a8707945620661cf

Contents?: true

Size: 732 Bytes

Versions: 8

Compression:

Stored size: 732 Bytes

Contents

// ==========================================================================
// ViewBuilder
// ==========================================================================

ViewBuilder = SC.Object.create({

  // This will create the server for your application.  Add any namespaces
  // your model objects are defined in to the prefix array.
  server: SC.Server.create({ prefix: ['ViewBuilder'] }),

  // When you are in development mode, this array will be populated with 
  // any fixtures you create for testing and loaded automatically in your
  // main method.  When in production, this will be an empty array.
  FIXTURES: [],

  // Any keys in this array will be instantiated automatically from main.
  controllers: []
  
}) ;

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
sproutcore-0.9.12 clients/view_builder/core.js
sproutcore-0.9.11 clients/view_builder/core.js
sproutcore-0.9.10 clients/view_builder/core.js
sproutcore-0.9.13 clients/view_builder/core.js
sproutcore-0.9.4 clients/view_builder/core.js
sproutcore-0.9.8 clients/view_builder/core.js
sproutcore-0.9.9 clients/view_builder/core.js
sproutcore-0.9.7 clients/view_builder/core.js