diff --git a/meta/crx/vapi-common.js b/meta/crx/vapi-common.js index 17879b1..cce22b2 100644 --- a/meta/crx/vapi-common.js +++ b/meta/crx/vapi-common.js @@ -21,6 +21,8 @@ // For background page or non-background pages +/* global self, vAPI */ + /******************************************************************************/ (function() { @@ -36,7 +38,7 @@ self.vAPI = self.vAPI || {}; var setScriptDirection = function(language) { document.body.setAttribute( 'dir', - ~['ar', 'he', 'fa', 'ps', 'ur'].indexOf(language) ? 'rtl' : 'ltr' + ['ar', 'he', 'fa', 'ps', 'ur'].indexOf(language) !== -1 ? 'rtl' : 'ltr' ); };