- Posts: 2
- Thank you received: 0
X,Y,zoom coorddinates in zoomer
-
michielbom
Inactive member - Topic Author
- New Member
Less
More
11 years 3 months ago #32497
by michielbom
X,Y,zoom coorddinates in zoomer was created by michielbom
Please give me some 'tricks' or best practices as to how to stabilize the X,Y,zoom settings.
The moment I adjust the blue box, the red changes and vice versa.
Once I got it fixed and press 'OK' it moves again and always 'outside' the picture area. It takes hours to stabilize one picture in the zoomer.... by trial and error.
please help
The moment I adjust the blue box, the red changes and vice versa.
Once I got it fixed and press 'OK' it moves again and always 'outside' the picture area. It takes hours to stabilize one picture in the zoomer.... by trial and error.
please help
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
11 years 3 months ago #32501
by ivan.milic
Replied by ivan.milic on topic X,Y,zoom coorddinates in zoomer
Use chrome browser?
Please Log in to join the conversation.
-
michielbom
Inactive member - Topic Author
- New Member
Less
More
- Posts: 2
- Thank you received: 0
11 years 3 months ago #32503
by michielbom
Replied by michielbom on topic X,Y,zoom coorddinates in zoomer
Yes, i do use Chrome, Is that the problem?
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
11 years 3 months ago #32510
by ivan.milic
Replied by ivan.milic on topic X,Y,zoom coorddinates in zoomer
Open:
modules\mod_hot_joomla_zoomer\elements\zeditor.php
line :
jQuery('#zoomerPreviewImage').parent().css({overflow:'auto'});
change to:
jQuery('#zoomerPreviewImage').parent().css({overflow:'hidden'});
also
function onSelectZoomerListRow(row){
if(row.hasClass('current')) return false;
zoomerPrevImageSkipMeasure = true;
jQuery("#zoomerEditorList .current").removeClass('current').removeClass('ui-widget-header');
row.addClass('current').addClass('ui-widget-header');
jQuery("#zoomerNoLoadMessage").css({display:'none'});
jQuery("#zoomerUserEditTable").css({display:'block'});
ShowZoomerCurrent();
return false;
}
change to:
function onSelectZoomerListRow(row){
if(row.hasClass('current')) return false;
zoomerPrevImageSkipMeasure = true;
jQuery("#zoomerEditorList .current").removeClass('current').removeClass('ui-widget-header');
row.addClass('current').addClass('ui-widget-header');
jQuery("#zoomerNoLoadMessage").css({display:'none'});
jQuery("#zoomerUserEditTable").css({display:'block'});
ShowZoomerCurrent();
setTimeout(function(){
onZoomerUserValueChange();
},800);
return false;
}
modules\mod_hot_joomla_zoomer\elements\zeditor.php
line :
jQuery('#zoomerPreviewImage').parent().css({overflow:'auto'});
change to:
jQuery('#zoomerPreviewImage').parent().css({overflow:'hidden'});
also
function onSelectZoomerListRow(row){
if(row.hasClass('current')) return false;
zoomerPrevImageSkipMeasure = true;
jQuery("#zoomerEditorList .current").removeClass('current').removeClass('ui-widget-header');
row.addClass('current').addClass('ui-widget-header');
jQuery("#zoomerNoLoadMessage").css({display:'none'});
jQuery("#zoomerUserEditTable").css({display:'block'});
ShowZoomerCurrent();
return false;
}
change to:
function onSelectZoomerListRow(row){
if(row.hasClass('current')) return false;
zoomerPrevImageSkipMeasure = true;
jQuery("#zoomerEditorList .current").removeClass('current').removeClass('ui-widget-header');
row.addClass('current').addClass('ui-widget-header');
jQuery("#zoomerNoLoadMessage").css({display:'none'});
jQuery("#zoomerUserEditTable").css({display:'block'});
ShowZoomerCurrent();
setTimeout(function(){
onZoomerUserValueChange();
},800);
return false;
}
Please Log in to join the conversation.
Time to create page: 0.287 seconds