Fix regression that disabled the "Open With Different Viewer" button on the fallback bar

This commit is contained in:
Jonas Jenwald 2014-01-16 13:49:39 +01:00
parent ab4f27b272
commit 181e06f30a
2 changed files with 11 additions and 6 deletions

View file

@ -377,7 +377,10 @@ ChromeActions.prototype = {
break;
}
},
fallback: function(featureId, url, sendResponse) {
fallback: function(args, sendResponse) {
var featureId = args.featureId;
var url = args.url;
var self = this;
var domWindow = this.domWindow;
var strings = getLocalizedStrings('chrome.properties');