Commit 8d0b946b authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

$.browser.opera -> AscBrowser.isOpera

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@53543 954022d7-b5bf-4e40-9824-e11837661b57
parent 485bfbf5
...@@ -259,7 +259,7 @@ ...@@ -259,7 +259,7 @@
if(text == false) if(text == false)
return; return;
//исключения для opera в случае копирования пустой html //исключения для opera в случае копирования пустой html
if($(text).find('td')[0] && $(text).find('td')[0].innerText == '' && $.browser['opera']) if($(text).find('td')[0] && $(text).find('td')[0].innerText == '' && AscBrowser.isOpera)
$(text).find('td')[0].innerHTML = ' '; $(text).find('td')[0].innerHTML = ' ';
t.element.appendChild(text); t.element.appendChild(text);
...@@ -273,7 +273,7 @@ ...@@ -273,7 +273,7 @@
} }
if($(text).find('img')[0] && $.browser['opera']) if($(text).find('img')[0] && AscBrowser.isOpera)
{ {
$(text)[0].innerHTML = "<tr><td>&nbsp;</td></tr>"; $(text)[0].innerHTML = "<tr><td>&nbsp;</td></tr>";
if(t.copyText.isImage) if(t.copyText.isImage)
...@@ -2117,7 +2117,7 @@ ...@@ -2117,7 +2117,7 @@
{ {
return false; return false;
} }
if(t.copyText.text && $.browser['opera'] && node.text.replace(/(\r|\t|\n| |\s)/g, "") == t.copyText.text.replace(/(\r|\t|\n| |\s)/g, "")) if(t.copyText.text && AscBrowser.isOpera && node.text.replace(/(\r|\t|\n| |\s)/g, "") == t.copyText.text.replace(/(\r|\t|\n| |\s)/g, ""))
return true; return true;
if($.browser['msie'] && t.copyText.text != undefined && node.text != undefined && node.text == "" && t.copyText.isImage) if($.browser['msie'] && t.copyText.text != undefined && node.text != undefined && node.text == "" && t.copyText.isImage)
return true; return true;
......
...@@ -1769,7 +1769,7 @@ ...@@ -1769,7 +1769,7 @@
case 144://Num Lock case 144://Num Lock
case 145://Scroll Lock case 145://Scroll Lock
if ( $.browser.opera ) { if (AscBrowser.isOpera) {
event.stopPropagation(); event.stopPropagation();
event.preventDefault(); event.preventDefault();
} }
...@@ -1814,7 +1814,7 @@ ...@@ -1814,7 +1814,7 @@
break; break;
case 113: // F2 case 113: // F2
if( $.browser.opera ){ if (AscBrowser.isOpera) {
event.stopPropagation(); event.stopPropagation();
event.preventDefault(); event.preventDefault();
} }
......
...@@ -632,7 +632,7 @@ ...@@ -632,7 +632,7 @@
case 113: // F2 case 113: // F2
if (isViewerMode || t.isCellEditMode || t.isSelectionDialogMode) {return true;} if (isViewerMode || t.isCellEditMode || t.isSelectionDialogMode) {return true;}
if ($.browser.opera) {stop();} if (AscBrowser.isOpera) {stop();}
// Выставляем блокировку на выход из редактора по клавишам-стрелкам // Выставляем блокировку на выход из редактора по клавишам-стрелкам
t.strictClose = true; t.strictClose = true;
// При F2 выставляем фокус в редакторе // При F2 выставляем фокус в редакторе
...@@ -689,7 +689,7 @@ ...@@ -689,7 +689,7 @@
case 144: //Num Lock case 144: //Num Lock
case 145: //Scroll Lock case 145: //Scroll Lock
if ($.browser.opera) {stop();} if (AscBrowser.isOpera) {stop();}
return t.__retval; return t.__retval;
case 32: // Spacebar case 32: // Spacebar
......
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