Sha256: 6f398c3cd0401ec5d41b781952994aab2fa56e137bbd9b75b46217a66f9c5ebb
Contents?: true
Size: 991 Bytes
Versions: 11
Compression:
Stored size: 991 Bytes
Contents
// ========================================================================== // Project: SproutCore Test Runner // Copyright: ©2006-2011 Strobe Inc. and contributors. // Portions ©2008-2011 Apple Inc. All rights reserved. // License: Licensed under MIT license (see license.js) // ========================================================================== /*global Welcome */ /** 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
11 entries across 11 versions & 1 rubygems