blob: 40153e44d9f4116787644643158d159520d1765a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Page-specific demo stuff - not needed for library
function stressTest(sound,count) {
for (var i=0; i<count; i++) {
setTimeout("soundManager.play('"+sound+"',1,true)",(i+1)*50);
}
}
function ihatespam(s) {
return s.replace('improbablyaspammer','scott');
}
|