Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
adityapatadia committed Jul 16, 2024
1 parent 7880c84 commit 82a434b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion SPEC.rst
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ following message to the parent.

{
context: 'player.js',
version: '0.0.11',
version: '2.0',
event: 'methodName',
listener: 'listenerName',
value: 'returnValue'
Expand Down
2 changes: 1 addition & 1 deletion src/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const core = {
},

DEBUG : false,
VERSION :'0.0.11',
VERSION :'2.0',
CONTEXT : 'player.js',

isString : function (obj) {
Expand Down
4 changes: 2 additions & 2 deletions test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ function testCases(hooks){

iframe.src = FRAMES[frameIndex];
iframe.id = 'iframe_'+frameIndex;
iframe.width = 200;
iframe.height = 200;
iframe.width = 400;
iframe.height = 400;
frameIndex++;

document.body.appendChild(iframe);
Expand Down

0 comments on commit 82a434b

Please sign in to comment.