Sha256: 485d949ce53eeaeb3b8d25745214c874efb457677456a047adca1e31ea2d2e08
Contents?: true
Size: 699 Bytes
Versions: 18
Compression:
Stored size: 699 Bytes
Contents
// ========================================================================== // Project: TestRunner.detailController // Copyright: ©2010 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
18 entries across 18 versions & 2 rubygems