Sha256: 392434c82524d9b39524cba3c1ac8490662f3a6ba39e441a3bcc45c5f6557aa4
Contents?: true
Size: 1020 Bytes
Versions: 16
Compression:
Stored size: 1020 Bytes
Contents
// ========================================================================== // Project: SproutCore Test Runner // Copyright: ©2006-2009 Sprout Systems, Inc. and contributors. // Portions ©2008-2009 Apple Inc. All rights reserved. // License: Licened under MIT license (see license.js) // ========================================================================== /*globals Welcome */ /** @namespace The Welcome app is displayed when you load the root URL and the dev server is visible. It will fetch the list of targets from the server and list them. @extends SC.Object */ Welcome = SC.Object.create( /** @scope Welcome.prototype */ { NAMESPACE: 'Welcome', VERSION: '1.0.0', store: SC.Store.create().from('CoreTools.DataSource'), displayTitle: function() { var hostname = (window.location.hostname || 'localhost').toString(); return hostname.match(/sproutcore\.com/) ? "SproutCore Demos".loc() : "SproutCore Developer Tools"; }.property().cacheable() }) ;
Version data entries
16 entries across 16 versions & 1 rubygems