Skip to content

Commit

Permalink
JSHinted the multimedia player
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurentGoderre committed Aug 21, 2012
1 parent 1e45849 commit 6a5267d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/js/pe-ap-min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/js/workers/multimedia.js
Expand Up @@ -501,7 +501,7 @@
url : url,
context : evtmgr,
dataType : 'html',
success : function (data, status, response) {
success : function (data) {
var eventObj = {type: 'captionsloaded'};
if (data.indexOf('<html') > -1) {
eventObj.captions = parse_html($(data));
Expand Down Expand Up @@ -559,7 +559,7 @@

//Method to allow the flash player to trigger the media events
_pe.triggermediaevent = function (id, event) {
var o = $('#' + id).find('param:eq(0)').trigger(event);
$('#' + id).find('param:eq(0)').trigger(event);
};

window.pe = _pe;
Expand Down

0 comments on commit 6a5267d

Please sign in to comment.