Sha256: 4bbfacc6f6c2943dbfa1d69d6377edc32a10873b97af15444264091edd41c991
Contents?: true
Size: 711 Bytes
Versions: 11
Compression:
Stored size: 711 Bytes
Contents
// ========================================================================== // Project: CoreTools // Copyright: ©2011 Apple Inc. // ========================================================================== /*globals CoreTools */ /** This framework contains common code shared by the SproutCore developer tools including the test runner, doc viewer and welcome apps. It is not generally intended for use in your own applications. @extends SC.Object */ CoreTools = SC.Object.create( /** @scope CoreTools.prototype */ { NAMESPACE: 'CoreTools', VERSION: '1.0.0', attachUrlPrefix: function(url) { if(url && SC.urlPrefix) { url = SC.urlPrefix + url; } return url; } }) ;
Version data entries
11 entries across 11 versions & 1 rubygems