Skip to content

Commit

Permalink
Fix wrong version numbers of Firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Apr 17, 2014
1 parent 8db6b00 commit f2dc08b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/window.js
Original file line number Diff line number Diff line change
Expand Up @@ -1408,8 +1408,8 @@ TreeStyleTabWindow.prototype = inherit(TreeStyleTabBase, {
var checked = { value:true };
var w = this.window;
w.focus();
var message = utils.tabbrowserBundle.getFormattedString('tabs.closeWarningMultipleTabs', [aTabsCount]) || // Firefox 29 and older
w.PluralForm.get(aTabsCount, utils.tabbrowserBundle.getString('tabs.closeWarningMultiple')).replace('#1', aTabsCount) ; // Firefox 30 and later
var message = utils.tabbrowserBundle.getFormattedString('tabs.closeWarningMultipleTabs', [aTabsCount]) || // Firefox 28 and older
w.PluralForm.get(aTabsCount, utils.tabbrowserBundle.getString('tabs.closeWarningMultiple')).replace('#1', aTabsCount) ; // Firefox 29 and later
var shouldClose = Services.prompt.confirmEx(w,
utils.tabbrowserBundle.getString('tabs.closeWarningTitle'),
message,
Expand Down

0 comments on commit f2dc08b

Please sign in to comment.