Sha256: 9d54566c3211bb8a2c3eb75ffd014bd00c6f6e712417defb38a895025174a38f
Contents?: true
Size: 724 Bytes
Versions: 19
Compression:
Stored size: 724 Bytes
Contents
// ========================================================================== // Project: CoreTools // Copyright: ©2011 Apple Inc. // ========================================================================== /*globals CoreTools */ /** @namespace 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
19 entries across 19 versions & 1 rubygems