Skip to content

Commit

Permalink
Add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmfoley committed Jun 24, 2013
1 parent 57aeb3b commit 591ddd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bridge.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ controlpage.onAlert=function(msg){
page[request[3]] = eval('(' + request[4] + ')')
break;
case 'pageSetViewport':
page.viewportSize = {width:request[3], height:request[4]}
page.viewportSize = {width:request[3], height:request[4]};
break;
default:
console.error('unrecognized request:'+request);
Expand Down

0 comments on commit 591ddd6

Please sign in to comment.