Commit d65d2dc1 authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

http://bugzserver/show_bug.cgi?id=31802 - [Copy&Paste] Вставка изображения со...

http://bugzserver/show_bug.cgi?id=31802 - [Copy&Paste] Вставка изображения со стороннего сайта не происходит в FF

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@68654 954022d7-b5bf-4e40-9824-e11837661b57
parent a31908d4
......@@ -6433,6 +6433,14 @@ PasteProcessor.prototype =
nHeight = parseInt(computedStyle.getPropertyValue("height"));
}
}
//TODO пересмотреть! node.getAttribute("width") в FF возврашает "auto" -> изображения в FF не всталяются
if(AscBrowser.isMozilla && (!nWidth || !nHeight))
{
nWidth = parseInt(node.width);
nHeight = parseInt(node.height);
}
var sSrc = node.getAttribute("src");
if((!window["Asc"] || (window["Asc"] && window["Asc"]["editor"] === undefined)) && (isNaN(nWidth) || isNaN(nHeight) || !(typeof nWidth === "number") || !(typeof nHeight === "number")//первое условие - мы не в редакторе таблиц, тогда выполняем
|| nWidth === 0 || nHeight === 0))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment