Commit eb19d33a by vietdo

1.6.3のエラーを対応する。

parent a370180b
...@@ -848,8 +848,10 @@ CONTENTVIEW_EVENTS.onClick_CanvasMain = function(event) { ...@@ -848,8 +848,10 @@ CONTENTVIEW_EVENTS.onClick_CanvasMain = function(event) {
CONTENTVIEW_GENERAL.positonY = CONTENTVIEW_GENERAL.newpositionY; CONTENTVIEW_GENERAL.positonY = CONTENTVIEW_GENERAL.newpositionY;
var hitPageObj = CONTENTVIEW_GETDATA.getContent().currentPage.hitTest(imagePt.x, imagePt.y); var hitPageObj = CONTENTVIEW_GETDATA.getContent().currentPage.hitTest(imagePt.x, imagePt.y);
// newPostion // newPostion
CONTENTVIEW_GENERAL.newpositionX = hitPageObj.x; if(hitPageObj != null){
CONTENTVIEW_GENERAL.newpositionY = hitPageObj.y; CONTENTVIEW_GENERAL.newpositionX = hitPageObj.x;
CONTENTVIEW_GENERAL.newpositionY = hitPageObj.y;
}
if (hitPageObj) { if (hitPageObj) {
if(!CONTENTVIEW.is3DObject(hitPageObj)){ if(!CONTENTVIEW.is3DObject(hitPageObj)){
if(((CONTENTVIEW_GENERAL.positonX != CONTENTVIEW_GENERAL.newpositionX) || (CONTENTVIEW_GENERAL.positonY != CONTENTVIEW_GENERAL.newpositionY)) && (CONTENTVIEW_GENERAL.positonX != undefined)) { if(((CONTENTVIEW_GENERAL.positonX != CONTENTVIEW_GENERAL.newpositionX) || (CONTENTVIEW_GENERAL.positonY != CONTENTVIEW_GENERAL.newpositionY)) && (CONTENTVIEW_GENERAL.positonX != undefined)) {
......
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