Sha256: 82dce07efe08093c7a4df7d59ca58fdf6e93cfae33ce50284096b9240a8405f1
Contents?: true
Size: 847 Bytes
Versions: 51
Compression:
Stored size: 847 Bytes
Contents
// ========================================================================== // Project: <%= namespace %> - mainPage // Copyright: ©<%= Time.now.year %> My Company, Inc. // ========================================================================== /*globals <%= namespace %> */ // This page describes the main user interface for your application. <%= namespace %>.mainPage = SC.Page.design({ // The main pane is made visible on screen as soon as your app is loaded. // Add childViews to this pane for views to display immediately on page // load. mainPane: SC.MainPane.design({ childViews: 'labelView'.w(), labelView: SC.LabelView.design({ layout: { centerX: 0, centerY: 0, width: 200, height: 18 }, textAlign: SC.ALIGN_CENTER, tagName: "h1", value: "Welcome to SproutCore!" }) }) });
Version data entries
51 entries across 51 versions & 1 rubygems