Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xjs/jquery.karma.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/js/jquery.karma.js b/js/jquery.karma.js
index 261e9f8..24dd7ab 100755
--- a/js/jquery.karma.js
+++ b/js/jquery.karma.js
@@ -970,6 +970,9 @@ var KSound = Class(
return this.readyState === 4;
},
play: function (){
+ //hack to fix the audio "stuttering"
+ //more info: https://bugs.launchpad.net/karma/+bug/426108
+ this.media.currentTime = 0.1;
this.media.play();
}
}