Sha256: fa726e4dc9f44ad691a9155a5290cc9bc3512bd3da65d88faa26a514921e115f

Contents?: true

Size: 1.06 KB

Versions: 3

Compression:

Stored size: 1.06 KB

Contents

// ==========================================================================
// Project:   SproutCore - JavaScript Application Framework
// Copyright: ©2008-2011 Apple Inc. All rights reserved.
// License:   Licensed under MIT license (see license.js)
// ==========================================================================

/*globals Docs */

// This is the theme that defines how your app renders.
//
// Your app is given its own theme so it is easier and less
// messy for you to override specific things just for your
// app.
//
// You don't have to create the whole theme on your own, though:
// your app's theme is based on SproutCore's Ace theme.
//
// NOTE: if you want to change the theme this one is based on, don't
// forget to change the :css_theme property in your buildfile.
Docs.Theme = SC.AceTheme.create({
  name: 'docs'
});

// SproutCore needs to know that your app's theme exists
SC.Theme.addTheme(Docs.Theme);

// Setting it as the default theme makes every pane SproutCore
// creates default to this theme unless otherwise specified.
SC.defaultTheme = 'docs';

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sc-docs-0.0.3 lib/sc_docs/docs/apps/docs/theme.js
sc-docs-0.0.2 lib/sc_docs/docs/apps/docs/theme.js
sc-docs-0.0.1 lib/sc_docs/docs/apps/docs/theme.js