Browse Source

code review: jshint'ed

pull/2/head
gorhill 10 years ago
parent
commit
56d4cf6a6a
  1. 7
      platform/firefox/vapi-background.js

7
platform/firefox/vapi-background.js

@ -19,7 +19,8 @@
Home: https://github.com/gorhill/uBlock Home: https://github.com/gorhill/uBlock
*/ */
/* global punycode */
/* jshint esnext: true, bitwise: false */
/* global self, Components, punycode */
// For background page // For background page
@ -143,7 +144,7 @@ vAPI.storage = {
sqlWhere: function(col, params) { sqlWhere: function(col, params) {
if ( params > 0 ) { if ( params > 0 ) {
params = Array(params + 1).join('?, ').slice(0, -2);
params = new Array(params + 1).join('?, ').slice(0, -2);
return ' WHERE ' + col + ' IN (' + params + ')'; return ' WHERE ' + col + ' IN (' + params + ')';
} }
@ -1000,7 +1001,7 @@ var httpObserver = {
// Probably isn't the best method to identify the source tab // Probably isn't the best method to identify the source tab
if ( tabURI.spec !== lastRequest.openerURL ) { if ( tabURI.spec !== lastRequest.openerURL ) {
continue
continue;
} }
sourceTabId = vAPI.tabs.getTabId(tab); sourceTabId = vAPI.tabs.getTabId(tab);

Loading…
Cancel
Save