Commit 2d495ff8 by Kim Eunchul

Merge branch 'contract/ttss/1.0.0_kim-ec' into 'contract/ttss/1.1.0'

Contract/ttss/1.0.0 kim ec

See merge request abook_web/web-viewer!57
parents 56e794da 47588246
...@@ -747,12 +747,12 @@ CONTENTVIEW.searchHandle = function() { ...@@ -747,12 +747,12 @@ CONTENTVIEW.searchHandle = function() {
var myQuery; var myQuery;
var myRegExpArr = []; var myRegExpArr = [];
var count = 0; var count = 0;
var textReg = $('#txtSearch').val().replace(/\(/g," \( ").replace(/\)/g," \) "); var textReg = $('#txtSearch').val().replace(/\(/g," \( ").replace(/\)/g," \) ").replace(/ /g,'"\ "');
//)(check //)(check
var dummyArray = []; var dummyArray = [];
var dummytextReg = $('#txtSearch').val().replace(/\"/g,"'\"'"); var dummytextReg = $('#txtSearch').val().replace(/\"/g,"'\"'");
if($('#txtSearch').val() == '"("'){ if($('#txtSearch').val() == '"("'){
myRegExpArr[0] = new RegExp("[\(]"); myRegExpArr[0] = new RegExp("[\(]");
for (var nIndex = 0; nIndex < contentPage.length; nIndex++) { for (var nIndex = 0; nIndex < contentPage.length; nIndex++) {
...@@ -4759,21 +4759,39 @@ CONTENTVIEW.flip = function(opt) { ...@@ -4759,21 +4759,39 @@ CONTENTVIEW.flip = function(opt) {
// display rect // display rect
CONTENTVIEW.srcRect.add(CONTENTVIEW.moveX, CONTENTVIEW.moveY); CONTENTVIEW.srcRect.add(CONTENTVIEW.moveX, CONTENTVIEW.moveY);
if($(rotatebtnR).attr('angle') == '90' || $(rotatebtnR).attr('angle') == '-90'){
// fix rect if (CONTENTVIEW.srcRect.left < 0) {
if (CONTENTVIEW.srcRect.left < 0) { CONTENTVIEW.srcRect.left = 0;
CONTENTVIEW.srcRect.left = 0; CONTENTVIEW.srcRect.right = CONTENTVIEW.srcRect.left + CONTENTVIEW.srcRect.width;
CONTENTVIEW.srcRect.right = CONTENTVIEW.srcRect.left + CONTENTVIEW.srcRect.width; }
} else if (CONTENTVIEW.srcRect.right > offscreen.width) { if (CONTENTVIEW.srcRect.right > offscreen.width) {
CONTENTVIEW.srcRect.left = offscreen.width - CONTENTVIEW.srcRect.width; CONTENTVIEW.srcRect.left = offscreen.width - CONTENTVIEW.srcRect.width;
CONTENTVIEW.srcRect.right = offscreen.width; CONTENTVIEW.srcRect.right = offscreen.width;
} }
if (CONTENTVIEW.srcRect.top < 0) { if (CONTENTVIEW.srcRect.top < 0) {
CONTENTVIEW.srcRect.top = 0; CONTENTVIEW.srcRect.top = 0;
CONTENTVIEW.srcRect.bottom = CONTENTVIEW.srcRect.top + CONTENTVIEW.srcRect.height; CONTENTVIEW.srcRect.bottom = CONTENTVIEW.srcRect.top + CONTENTVIEW.srcRect.height;
} else if (CONTENTVIEW.srcRect.bottom > offscreen.height) { }
CONTENTVIEW.srcRect.top = offscreen.height - CONTENTVIEW.srcRect.height; if (CONTENTVIEW.srcRect.bottom > offscreen.height) {
CONTENTVIEW.srcRect.bottom = offscreen.height; CONTENTVIEW.srcRect.top = offscreen.height - CONTENTVIEW.srcRect.height;
CONTENTVIEW.srcRect.bottom = offscreen.height;
}
}else{
// fix rect
if (CONTENTVIEW.srcRect.left < 0) {
CONTENTVIEW.srcRect.left = 0;
CONTENTVIEW.srcRect.right = CONTENTVIEW.srcRect.left + CONTENTVIEW.srcRect.width;
} else if (CONTENTVIEW.srcRect.right > offscreen.width) {
CONTENTVIEW.srcRect.left = offscreen.width - CONTENTVIEW.srcRect.width;
CONTENTVIEW.srcRect.right = offscreen.width;
}
if (CONTENTVIEW.srcRect.top < 0) {
CONTENTVIEW.srcRect.top = 0;
CONTENTVIEW.srcRect.bottom = CONTENTVIEW.srcRect.top + CONTENTVIEW.srcRect.height;
} else if (CONTENTVIEW.srcRect.bottom > offscreen.height) {
CONTENTVIEW.srcRect.top = offscreen.height - CONTENTVIEW.srcRect.height;
CONTENTVIEW.srcRect.bottom = offscreen.height;
}
} }
// target rect // target rect
......
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