Skip to content

Commit

Permalink
Merge pull request #932 from eviweb/fix-method-declaration-error
Browse files Browse the repository at this point in the history
fix error in method declaration of some features
  • Loading branch information
johndyer committed Jul 14, 2013
2 parents 7cc268c + 440e613 commit 5233b02
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/js/mep-feature-backlight.js
Expand Up @@ -9,7 +9,7 @@
});

$.extend(MediaElementPlayer.prototype, {
buildbacklight = function(player, controls, layers, media) {
buildbacklight : function(player, controls, layers, media) {
if (!player.isVideo)
return;

Expand Down Expand Up @@ -432,4 +432,4 @@
}
}

})(mejs.$);
})(mejs.$);
4 changes: 2 additions & 2 deletions src/js/mep-feature-playlist.js
@@ -1,12 +1,12 @@
(function($) {

$.extend(MediaElementPlayer.prototype, {
buildplaylist = function(player, controls, layers, media) {
buildplaylist : function(player, controls, layers, media) {
if (!player.isVideo)
return;

// add speed controls
}
});

})(mejs.$);
})(mejs.$);

0 comments on commit 5233b02

Please sign in to comment.