Sha256: e13783d9badb9f066f967eb448272ef971367f523d5f07d22417b8ae5fad4bce
Contents?: true
Size: 699 Bytes
Versions: 23
Compression:
Stored size: 699 Bytes
Contents
// ========================================================================== // Project: TestRunner.detailController // Copyright: ©2009 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
23 entries across 23 versions & 1 rubygems