Advertisement
SwVitaliy

Untitled

Aug 8th, 2012
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function(form){ var enabled = false, curPoint = {};
  2.  
  3. form.mousemove(function(e){
  4. if (enabled) {offs = { x:e.pageX-curPoint.x, y:e.pageY-curPoint.y }; curPoint = {  x:e.pageX, y:e.pageY }
  5. form.css({ left:"+=" + offs.x+ "px", top:"+=" + offs.y+ "px" })
  6. }
  7. }).mousedown(function(e){curPoint = { x:e.pageX, y:e.pageY }
  8. enabled = true;
  9. }).mouseup(function() {
  10. console.log('mouseup');
  11. enabled = false;
  12.  
  13. })
  14. })($('#ctrl_mt_addEdit>div.addedit_wrap'))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement