Sha256: 72a05bf53fe5e516f6ed45939542f78eadff83bd4b28629c1541ec388d159f43
Contents?: true
Size: 743 Bytes
Versions: 9
Compression:
Stored size: 743 Bytes
Contents
// ========================================================================== // Project: Docs - mainPage // Copyright: ©2009 My Company, Inc. // ========================================================================== /*globals Docs */ // This page describes the main user interface for your application. Docs.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: 100, height: 18 }, tagName: "h1", value: "Hello World" }) }) });
Version data entries
9 entries across 9 versions & 1 rubygems