Bug 1022765 - Ensure ESC opens the split console on first try in the inspector. r=pbrosset

This commit is contained in:
Alexandre Poirot 2015-04-21 13:01:40 -07:00
Родитель 1394d77b29
Коммит 474efd847b
2 изменённых файлов: 1 добавлений и 3 удалений

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

@ -2162,7 +2162,7 @@ MarkupElementContainer.prototype = Heritage.extend(MarkupContainer.prototype, {
*/
isImagePreviewTarget: function(target, tooltip) {
if (!this.tooltipData || this.tooltipData.target !== target) {
return promise.reject();
return promise.reject(false);
}
return this.tooltipData.data.then(({data, size}) => {

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

@ -453,8 +453,6 @@ Tooltip.prototype = {
if (res && res.then) {
return res.then(arg => {
return arg instanceof Ci.nsIDOMNode ? arg : target;
}, () => {
return false;
});
} else {
let newTarget = res instanceof Ci.nsIDOMNode ? res : target;