Bug 44992
This commit is contained in:
parent
308428d83f
commit
c79ecb7e0a
|
@ -433,7 +433,7 @@ define([
|
|||
});
|
||||
|
||||
var onHyperlinkClick = function(url) {
|
||||
if (url && me.api.asc_getUrlType(url)>0) {
|
||||
if (url /*&& me.api.asc_getUrlType(url)>0*/) {
|
||||
window.open(url);
|
||||
}
|
||||
};
|
||||
|
|
|
@ -434,7 +434,7 @@ define([
|
|||
});
|
||||
|
||||
var onHyperlinkClick = function(url) {
|
||||
if (url && me.api.asc_getUrlType(url)>0) {
|
||||
if (url /*&& me.api.asc_getUrlType(url)>0*/) {
|
||||
window.open(url);
|
||||
}
|
||||
};
|
||||
|
|
|
@ -1277,11 +1277,11 @@ define([
|
|||
});
|
||||
return;
|
||||
}
|
||||
if (this.api.asc_getUrlType(url)>0) {
|
||||
// if (this.api.asc_getUrlType(url)>0) {
|
||||
var newDocumentPage = window.open(url, '_blank');
|
||||
if (newDocumentPage)
|
||||
newDocumentPage.focus();
|
||||
}
|
||||
// }
|
||||
},
|
||||
|
||||
onApiAutofilter: function(config) {
|
||||
|
|
Loading…
Reference in a new issue