Sha256: ca457e2fc90ae41245f24ec8fd36190577981d1423550d5943a0b5a41a9e9d62
Contents?: true
Size: 1012 Bytes
Versions: 7
Compression:
Stored size: 1012 Bytes
Contents
// ========================================================================== // Project: SproutCore Test Runner // Copyright: ©2006-2011 Strobe Inc. and contributors. // Portions ©2008-2010 Apple Inc. All rights reserved. // License: Licensed 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
7 entries across 7 versions & 2 rubygems