source:
Dev/trunk/src/client/util/doh/plugins/alwaysAudio.js
@
529
Last change on this file since 529 was 483, checked in by hendrikvanantwerpen, 11 years ago | |
---|---|
File size: 278 bytes |
Line | |
---|---|
1 | define(["dojo", "doh/runner"], function(dojo, doh) { |
2 | |
3 | // Checks the 'sounds' checkbox in the browser test runner |
4 | // so we get Homer's feedback on the test run |
5 | dojo.ready(function(){ |
6 | var chkNode = dojo.byId("audio"); |
7 | if(chkNode) { |
8 | chkNode.checked=true; |
9 | } |
10 | }); |
11 | }); |
Note: See TracBrowser
for help on using the repository browser.