source:
Dev/trunk/src/client/util/doh/plugins/alwaysAudio.js
Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago | |
---|---|
File size: 278 bytes |
Rev | Line | |
---|---|---|
[483] | 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.