Bug 1478652 - removeTabs passes '{animate: true}' instead of '{animation: true}' options object to removeTab in tabbrowser.js file. r=jaws

MozReview-Commit-ID: 1yzAITw6j1q

--HG--
extra : rebase_source : 8155b608165b7f0f453c9bb892a8f27cb724e477
This commit is contained in:
Abdoulaye O. Ly 2018-07-28 04:49:02 +00:00
Родитель e78b28d3b8
Коммит c9c73b50e7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -2587,7 +2587,7 @@ window._gBrowser = {
removeTabs(tabs) {
let tabsWithBeforeUnload = [];
let lastToClose;
let aParams = {animation: true};
let aParams = { animate: true };
for (let tab of tabs) {
if (tab.selected)
lastToClose = tab;