Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- init = function() {
- orig_src.onload = function(){
- // This is fired after the image is loaded. Width is now set.
- $cropMarker = $('#icCropMarker');
- console.log('Works:' + orig_src.width);
- $cropMarker.width('100%').height('100%');
- $cropMarker.on('mousedown touchstart', startResize);
- $cropMarker.on('mousedown touchstart', '#icMoveHandle', startMoving);
- $('#icCrop').on('click', crop);
- repositionOverlay();
- }
- orig_src.src = imageTarget.src;
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement