Sha256: 38ce07056b1ed144b65a77a82216098f645b1a3f547ddca9b621e4eeac269be8
Contents?: true
Size: 748 Bytes
Versions: 11
Compression:
Stored size: 748 Bytes
Contents
// ========================================================================== // Project: TestRunner // Copyright: ©2011 Apple Inc. // ========================================================================== /*global TestRunner */ /** The currently selected test in detail view. @extends SC.ObjectController */ TestRunner.testController = SC.ObjectController.create( /** @scope TestRunner.testController.prototype */ { contentBinding: SC.Binding.oneWay('TestRunner.testsController.selection').single(), /** 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
11 entries across 11 versions & 1 rubygems