Sha256: 6317be502680930aba026f6a3a07465b0d43ae8afaca0702893fb68ab1c14dae
Contents?: true
Size: 699 Bytes
Versions: 30
Compression:
Stored size: 699 Bytes
Contents
// ========================================================================== // Project: TestRunner.detailController // Copyright: ©2011 Apple Inc. // ========================================================================== /*globals TestRunner */ /** @class The currently selected test in detail view. @extends SC.ObjectController */ TestRunner.detailController = SC.ObjectController.create( /** @scope TestRunner.detailController.prototype */ { /** Adds a random number onto the end of the URL to force the iframe to reload. */ uncachedUrl: function() { var url = this.get('url'); return url ? [url, Date.now()].join('?') : url ; }.property('url') }) ;
Version data entries
30 entries across 30 versions & 1 rubygems