Skip to content

Commit

Permalink
Correct error in compatability layer
Browse files Browse the repository at this point in the history
  • Loading branch information
jugglinmike committed Mar 22, 2013
1 parent 7f9f554 commit 7deb40a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prototype/public/scripts/modules/gum-compat.js
Expand Up @@ -20,7 +20,7 @@ define(function() {
}, },
stopStream: { stopStream: {
moz: function(videoElem) { moz: function(videoElem) {
videoElem.mozSrcObject.stop(); delete videoElem.mozSrcObject;
videoElem.src = null; videoElem.src = null;
}, },
webkit: function(videoElem) { webkit: function(videoElem) {
Expand Down

0 comments on commit 7deb40a

Please sign in to comment.