Changeset 11015
- Timestamp:
- 04/20/2009 07:34:27 PM (15 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/js/jcrop/jquery.Jcrop.css
r10846 r11015 1 1 /* Fixes issue here http://code.google.com/p/jcrop/issues/detail?id=1 */ 2 .jcrop-holder 3 { 4 text-align: left; 5 } 2 .jcrop-holder { text-align: left; } 6 3 7 4 .jcrop-vline, .jcrop-hline … … 10 7 position: absolute; 11 8 background: white url('Jcrop.gif') top left repeat; 12 /*13 opacity: .5;14 *filter:alpha(opacity=50);15 */16 9 } 17 10 .jcrop-vline { height: 100%; width: 1px !important; } … … 27 20 } 28 21 29 .jcrop-tracker { 30 *background-color: gray; 31 width: 100%; height: 100%; 32 } 22 .jcrop-tracker { width: 100%; height: 100%; } 33 23 34 24 .custom .jcrop-vline, -
trunk/wp-includes/js/jcrop/jquery.Jcrop.dev.js
r10863 r11015 1 1 /** 2 * jquery.Jcrop.js v0.9. 52 * jquery.Jcrop.js v0.9.8 3 3 * jQuery Image Cropping Plugin 4 * @author Kelly Hallman <khallman@ wrack.org>5 * Copyright (c) 2008 Kelly Hallman - released under MIT License {{{4 * @author Kelly Hallman <khallman@gmail.com> 5 * Copyright (c) 2008-2009 Kelly Hallman - released under MIT License {{{ 6 6 * 7 7 * Permission is hereby granted, free of charge, to any person … … 28 28 * }}} 29 29 */ 30 30 31 (function($) { 32 31 33 $.Jcrop = function(obj,opt) 32 34 { … … 39 41 if (typeof(opt) !== 'object') opt = { }; 40 42 43 // Some on-the-fly fixes for MSIE...sigh 41 44 if (!('trackDocument' in opt)) 45 { 42 46 opt.trackDocument = $.browser.msie ? false : true; 47 if ($.browser.msie && $.browser.version.split('.')[0] == '8') 48 opt.trackDocument = true; 49 } 43 50 44 51 if (!('keySupport' in opt)) 45 opt.keySupport = $.browser.msie ? false : true;46 52 opt.keySupport = $.browser.msie ? false : true; 53 47 54 // }}} 48 55 // Extend the default options {{{ … … 79 86 swingSpeed: 3, 80 87 81 watchShift: false, 88 allowSelect: true, 89 allowMove: true, 90 allowResize: true, 91 82 92 minSelect: [ 0, 0 ], 83 93 maxSize: [ 0, 0 ], … … 95 105 // Initialize some jQuery objects {{{ 96 106 97 var $img = $(obj).css({ position: 'absolute' }); 107 var $origimg = $(obj); 108 var $img = $origimg.clone().removeAttr('id').css({ position: 'absolute' }); 109 110 $img.width($origimg.width()); 111 $img.height($origimg.height()); 112 $origimg.after($img).hide(); 98 113 99 114 presize($img,options.boxWidth,options.boxHeight); … … 107 122 .css({ 108 123 position: 'relative', 109 //overflow: 'hidden',110 124 backgroundColor: options.bgColor 111 }) 125 }).insertAfter($origimg).append($img); 112 126 ; 113 127 114 128 if (options.addClass) $div.addClass(options.addClass); 115 $img.wrap($div);129 //$img.wrap($div); 116 130 117 131 var $img2 = $('<img />')/*{{{*/ … … 131 145 var $hdl_holder = $('<div />')/*{{{*/ 132 146 .width(pct(100)).height(pct(100)) 133 .css({ 134 zIndex: 320 135 //position: 'absolute' 136 }) 137 ;/*}}}*/ 147 .css('zIndex',320); 148 /*}}}*/ 138 149 var $sel = $('<div />')/*{{{*/ 139 150 .css({ … … 146 157 147 158 var bound = options.boundary; 148 var $trk = $('<div />') 149 .addClass(cssClass('tracker')) 150 .width(boundx+(bound*2)) 151 .height(boundy+(bound*2)) 152 .css({ 153 position: 'absolute', 154 top: px(-bound), 155 left: px(-bound), 156 zIndex: 290, 157 opacity: 0 158 }) 159 .mousedown(newSelection) 160 ; 159 var $trk = newTracker().width(boundx+(bound*2)).height(boundy+(bound*2)) 160 .css({ position: 'absolute', top: px(-bound), left: px(-bound), zIndex: 290 }) 161 .mousedown(newSelection); 161 162 162 163 /* }}} */ 163 164 // Set more variables {{{ 164 165 165 var xscale, yscale; 166 var docOffset = getPos(obj), 166 var xlimit, ylimit, xmin, ymin; 167 var xscale, yscale, enabled = true; 168 var docOffset = getPos($img), 167 169 // Internal states 168 btndown, aspectLock,lastcurs, dimmed, animating,170 btndown, lastcurs, dimmed, animating, 169 171 shift_down; 170 172 171 173 // }}} 172 if ('trueSize' in options)/*{{{*/ 173 { 174 xscale = options.trueSize[0] / boundx; 175 yscale = options.trueSize[1] / boundy; 176 } 177 /*}}}*/ 178 179 // }}} 174 175 176 // }}} 180 177 // Internal Modules {{{ 181 178 … … 235 232 function getFixed()/*{{{*/ 236 233 { 237 if (!options.aspectRatio && !aspectLock) return getRect(); 238 234 if (!options.aspectRatio) return getRect(); 239 235 // This function could use some optimization I think... 240 var aspect = options.aspectRatio ? options.aspectRatio : aspectLock, 241 min = options.minSize, 242 max = options.maxSize, 236 var aspect = options.aspectRatio, 237 min_x = options.minSize[0]/xscale, 238 min_y = options.minSize[1]/yscale, 239 max_x = options.maxSize[0]/xscale, 240 max_y = options.maxSize[1]/yscale, 243 241 rw = x2 - x1, 244 242 rh = y2 - y1, … … 248 246 xx, yy 249 247 ; 250 248 if (max_x == 0) { max_x = boundx * 10 } 249 if (max_y == 0) { max_y = boundy * 10 } 251 250 if (real_ratio < aspect) 252 251 { … … 286 285 } 287 286 } 287 288 // Magic %-) 289 if(xx > x1) { // right side 290 if(xx - x1 < min_x) { 291 xx = x1 + min_x; 292 } else if (xx - x1 > max_x) { 293 xx = x1 + max_x; 294 } 295 if(yy > y1) { 296 yy = y1 + (xx - x1)/aspect; 297 } else { 298 yy = y1 - (xx - x1)/aspect; 299 } 300 } else if (xx < x1) { // left side 301 if(x1 - xx < min_x) { 302 xx = x1 - min_x 303 } else if (x1 - xx > max_x) { 304 xx = x1 - max_x; 305 } 306 if(yy > y1) { 307 yy = y1 + (x1 - xx)/aspect; 308 } else { 309 yy = y1 - (x1 - xx)/aspect; 310 } 311 } 312 313 if(xx < 0) { 314 x1 -= xx; 315 xx = 0; 316 } else if (xx > boundx) { 317 x1 -= xx - boundx; 318 xx = boundx; 319 } 320 321 if(yy < 0) { 322 y1 -= yy; 323 yy = 0; 324 } else if (yy > boundy) { 325 y1 -= yy - boundy; 326 yy = boundy; 327 } 328 288 329 return last = makeObj(flipCoords(x1,y1,xx,yy)); 289 330 }; … … 491 532 function refresh()/*{{{*/ 492 533 { 493 var p = Coords.getFixed(); 494 Coords.setPressed([p.x,p.y]); 495 Coords.setCurrent([p.x2,p.y2]); 534 var c = Coords.getFixed(); 535 536 Coords.setPressed([c.x,c.y]); 537 Coords.setCurrent([c.x2,c.y2]); 538 539 updateVisible(); 496 540 }; 497 541 /*}}}*/ … … 499 543 // Internal Methods 500 544 function updateVisible()/*{{{*/ 501 { if (awake) return update(); };545 { if (awake) return update(); }; 502 546 /*}}}*/ 503 547 function update()/*{{{*/ … … 533 577 }; 534 578 /*}}}*/ 535 function hide()/*{{{*/ 536 { 537 release(); 538 $img.css('opacity',1); 539 awake = false; 540 }; 541 /*}}}*/ 579 function showHandles()//{{{ 580 { 581 if (seehandles) 582 { 583 moveHandles(Coords.getFixed()); 584 $hdl_holder.show(); 585 } 586 }; 587 //}}} 542 588 function enableHandles()/*{{{*/ 543 589 { 544 590 seehandles = true; 545 moveHandles(Coords.getFixed()); 546 $hdl_holder.show(); 591 if (options.allowResize) 592 { 593 moveHandles(Coords.getFixed()); 594 $hdl_holder.show(); 595 return true; 596 } 547 597 }; 548 598 /*}}}*/ … … 560 610 function done()/*{{{*/ 561 611 { 562 var c = Coords.getFixed();563 612 animMode(false); 564 613 refresh(); … … 566 615 /*}}}*/ 567 616 617 var $track = newTracker().mousedown(createDragger('move')) 618 .css({ cursor: 'move', position: 'absolute', zIndex: 360 }) 619 620 $img_holder.append($track); 568 621 disableHandles(); 569 570 $img_holder.append571 (572 $('<div />')573 .addClass(cssClass('tracker'))574 .mousedown(createDragger('move'))575 .css({ cursor: 'move', position: 'absolute', zIndex: 360, opacity: 0 })576 );577 622 578 623 return { … … 580 625 update: update, 581 626 release: release, 582 show: show,583 hide: hide,627 refresh: refresh, 628 setCursor: function (cursor) { $track.css('cursor',cursor); }, 584 629 enableHandles: enableHandles, 630 enableOnly: function() { seehandles = true; }, 631 showHandles: showHandles, 585 632 disableHandles: disableHandles, 586 633 animMode: animMode, … … 606 653 function toFront()/*{{{*/ 607 654 { 655 $trk.css({zIndex:450}); 608 656 if (trackDoc) 609 657 { … … 613 661 ; 614 662 } 615 $trk.css({zIndex:450});616 663 } 617 664 /*}}}*/ 618 665 function toBack()/*{{{*/ 619 666 { 667 $trk.css({zIndex:290}); 620 668 if (trackDoc) 621 669 { … … 625 673 ; 626 674 } 627 $trk.css({zIndex:290});628 675 } 629 676 /*}}}*/ … … 676 723 var $keymgr = $('<input type="radio" />') 677 724 .css({ position: 'absolute', left: '-30px' }) 678 .keydown(parseKey) 679 .keyup(watchShift) 725 .keypress(parseKey) 680 726 .blur(onBlur), 681 727 … … 702 748 }; 703 749 /*}}}*/ 704 function watchShift(e)/*{{{*/705 {706 if (!options.watchShift) return;707 var init_shift = shift_down, fc;708 shift_down = e.shiftKey ? true : false;709 710 if (init_shift != shift_down) {711 if (shift_down && btndown) {712 fc = Coords.getFixed();713 aspectLock = fc.w / fc.h;714 } else aspectLock = 0;715 Selection.update();716 }717 e.stopPropagation();718 e.preventDefault();719 return false;720 };721 /*}}}*/722 750 function doNudge(e,x,y)/*{{{*/ 723 751 { 724 Coords.moveOffset([x,y]); 725 Selection.updateVisible(); 752 if (options.allowMove) { 753 Coords.moveOffset([x,y]); 754 Selection.updateVisible(); 755 }; 726 756 e.preventDefault(); 727 757 e.stopPropagation(); … … 731 761 { 732 762 if (e.ctrlKey) return true; 733 watchShift(e);763 shift_down = e.shiftKey ? true : false; 734 764 var nudge = shift_down ? 10 : 1; 735 765 switch(e.keyCode) … … 745 775 } 746 776 747 return false;777 return nothing(e); 748 778 }; 749 779 /*}}}*/ … … 786 816 function startDragMode(mode,pos)/*{{{*/ 787 817 { 788 docOffset = getPos( obj);818 docOffset = getPos($img); 789 819 Tracker.setCursor(mode=='move'?mode:mode+'-resize'); 790 820 … … 793 823 794 824 var fc = Coords.getFixed(); 795 Coords.setPressed(Coords.getCorner(oppLockCorner(mode))); 825 var opp = oppLockCorner(mode); 826 var opc = Coords.getCorner(oppLockCorner(opp)); 827 828 Coords.setPressed(Coords.getCorner(opp)); 829 Coords.setCurrent(opc); 830 796 831 Tracker.activateHandlers(dragmodeHandler(mode,fc),doneSelect); 797 832 }; … … 800 835 { 801 836 return function(pos) { 802 if (!options.aspectRatio && !aspectLock) switch(mode)837 if (!options.aspectRatio) switch(mode) 803 838 { 804 839 case 'e': pos[1] = f.y2; break; … … 851 886 { 852 887 return function(e) { 888 if (options.disabled) return false; 889 if ((ord == 'move') && !options.allowMove) return false; 853 890 btndown = true; 854 891 startDragMode(ord,mouseAbs(e)); … … 898 935 Selection.release(); 899 936 } 900 Tracker.setCursor( 'crosshair');937 Tracker.setCursor( options.allowSelect?'crosshair':'default' ); 901 938 }; 902 939 /*}}}*/ 903 940 function newSelection(e)/*{{{*/ 904 941 { 942 if (options.disabled) return false; 943 if (!options.allowSelect) return false; 905 944 btndown = true; 906 docOffset = getPos(obj); 907 Selection.release(); 945 docOffset = getPos($img); 908 946 Selection.disableHandles(); 909 947 myCursor('crosshair'); 910 Coords.setPressed(mouseAbs(e)); 948 var pos = mouseAbs(e); 949 Coords.setPressed(pos); 911 950 Tracker.activateHandlers(selectDrag,doneSelect); 912 951 KeyManager.watchKeys(); 952 Selection.update(); 913 953 914 954 e.stopPropagation(); … … 921 961 Coords.setCurrent(pos); 922 962 Selection.update(); 923 924 }; 925 /*}}}*/ 963 }; 964 /*}}}*/ 965 function newTracker() 966 { 967 var trk = $('<div></div>').addClass(cssClass('tracker')); 968 $.browser.msie && trk.css({ opacity: 0, backgroundColor: 'white' }); 969 return trk; 970 }; 926 971 927 972 // }}} 928 // Public API{{{929 973 // API methods {{{ 974 930 975 function animateTo(a)/*{{{*/ 931 976 { 932 var x1 = a[0] ,933 y1 = a[1] ,934 x2 = a[2] ,935 y2 = a[3] ;977 var x1 = a[0] / xscale, 978 y1 = a[1] / yscale, 979 x2 = a[2] / xscale, 980 y2 = a[3] / yscale; 936 981 937 982 if (animating) return; 983 938 984 var animto = Coords.flipCoords(x1,y1,x2,y2); 939 985 var c = Coords.getFixed(); 940 986 var animat = initcr = [ c.x, c.y, c.x2, c.y2 ]; 941 987 var interv = options.animationDelay; 942 //var ix1 = (animto[0] - initcr[0]) / steps;943 //var iy1 = (animto[1] - initcr[1]) / steps;944 //var ix2 = (animto[2] - initcr[2]) / steps;945 //var iy2 = (animto[3] - initcr[3]) / steps;946 988 947 989 var x = animat[0]; … … 974 1016 if (pcent >= 99.8) pcent = 100; 975 1017 976 setSelect (animat);1018 setSelectRaw(animat); 977 1019 }; 978 1020 }(); … … 982 1024 983 1025 animateStart(); 984 985 }; 986 /*}}}*/ 987 function setSelect(l) /*{{{*/ 1026 }; 1027 /*}}}*/ 1028 function setSelect(rect)//{{{ 1029 { 1030 setSelectRaw([rect[0]/xscale,rect[1]/yscale,rect[2]/xscale,rect[3]/yscale]); 1031 }; 1032 //}}} 1033 function setSelectRaw(l) /*{{{*/ 988 1034 { 989 1035 Coords.setPressed([l[0],l[1]]); … … 1002 1048 if (typeof(options.onSelect)!=='function') 1003 1049 options.onSelect = function() { }; 1050 1004 1051 }; 1005 1052 /*}}}*/ … … 1017 1064 { 1018 1065 setOptions(opt); 1019 1020 if ('setSelect' in opt) { 1066 interfaceUpdate(); 1067 }; 1068 /*}}}*/ 1069 function disableCrop()//{{{ 1070 { 1071 options.disabled = true; 1072 Selection.disableHandles(); 1073 Selection.setCursor('default'); 1074 Tracker.setCursor('default'); 1075 }; 1076 //}}} 1077 function enableCrop()//{{{ 1078 { 1079 options.disabled = false; 1080 interfaceUpdate(); 1081 }; 1082 //}}} 1083 function cancelCrop()//{{{ 1084 { 1085 Selection.done(); 1086 Tracker.activateHandlers(null,null); 1087 }; 1088 //}}} 1089 function destroy()//{{{ 1090 { 1091 $div.remove(); 1092 $origimg.show(); 1093 }; 1094 //}}} 1095 1096 function interfaceUpdate(alt)//{{{ 1097 // This method tweaks the interface based on options object. 1098 // Called when options are changed and at end of initialization. 1099 { 1100 options.allowResize ? 1101 alt?Selection.enableOnly():Selection.enableHandles(): 1102 Selection.disableHandles(); 1103 1104 Tracker.setCursor( options.allowSelect? 'crosshair': 'default' ); 1105 Selection.setCursor( options.allowMove? 'move': 'default' ); 1106 1107 $div.css('backgroundColor',options.bgColor); 1108 1109 if ('setSelect' in options) { 1021 1110 setSelect(opt.setSelect); 1022 1111 Selection.done(); 1023 } 1024 }; 1025 /*}}}*/ 1026 1027 if (typeof(opt) != 'object') opt = { }; 1028 if ('setSelect' in opt) { setSelect(opt.setSelect); Selection.done(); } 1112 delete(options.setSelect); 1113 } 1114 1115 if ('trueSize' in options) { 1116 xscale = options.trueSize[0] / boundx; 1117 yscale = options.trueSize[1] / boundy; 1118 } 1119 1120 xlimit = options.maxSize[0] || 0; 1121 ylimit = options.maxSize[1] || 0; 1122 xmin = options.minSize[0] || 0; 1123 ymin = options.minSize[1] || 0; 1124 1125 if ('outerImage' in options) 1126 { 1127 $img.attr('src',options.outerImage); 1128 delete(options.outerImage); 1129 } 1130 1131 Selection.refresh(); 1132 }; 1133 //}}} 1029 1134 1030 1135 // }}} 1031 1136 1032 var xlimit = options.maxSize[0] || 0; 1033 var ylimit = options.maxSize[1] || 0; 1034 var xmin = options.minSize[0] || 0; 1035 var ymin = options.minSize[1] || 0; 1036 1037 Tracker.setCursor('crosshair'); 1137 $hdl_holder.hide(); 1138 interfaceUpdate(true); 1038 1139 1039 return{1140 var api = { 1040 1141 animateTo: animateTo, 1041 1142 setSelect: setSelect, 1042 1143 setOptions: setOptionsNew, 1043 1144 tellSelect: tellSelect, 1044 tellScaled: tellScaled 1045 }; 1145 tellScaled: tellScaled, 1146 1147 disable: disableCrop, 1148 enable: enableCrop, 1149 cancel: cancelCrop, 1150 1151 focus: KeyManager.watchKeys, 1152 1153 getBounds: function() { return [ boundx * xscale, boundy * yscale ]; }, 1154 getWidgetSize: function() { return [ boundx, boundy ]; }, 1155 1156 release: Selection.release, 1157 destroy: destroy 1158 1159 }; 1160 1161 $origimg.data('Jcrop',api); 1162 return api; 1046 1163 }; 1047 1048 1164 1049 1165 $.fn.Jcrop = function(options)/*{{{*/ … … 1053 1169 var loadsrc = options.useImg || from.src; 1054 1170 var img = new Image(); 1055 var from = from; 1056 img.onload = function() { 1057 $(from).hide().after(img); 1058 from.Jcrop = $.Jcrop(img,options); 1059 }; 1171 img.onload = function() { $.Jcrop(from,options); }; 1060 1172 img.src = loadsrc; 1061 1173 }; … … 1067 1179 { 1068 1180 // If we've already attached to this object 1069 if ( 'Jcrop' in this)1181 if ($(this).data('Jcrop')) 1070 1182 { 1071 1183 // The API can be requested this way (undocumented) 1072 if (options == 'api') return this.Jcrop;1184 if (options == 'api') return $(this).data('Jcrop'); 1073 1185 // Otherwise, we just reset the options... 1074 else this.Jcrop.setOptions(options);1186 else $(this).data('Jcrop').setOptions(options); 1075 1187 } 1076 1188 // If we haven't been attached, preload and attach … … 1081 1193 return this; 1082 1194 }; 1195 /*}}}*/ 1196 1083 1197 })(jQuery); 1084 /*}}}*/ -
trunk/wp-includes/js/jcrop/jquery.Jcrop.js
r10863 r11015 1 (function(a){a.Jcrop=function(d,v){var d=d,v=v;if(typeof(d)!=="object"){d=a(d)[0]}if(typeof(v)!=="object"){v={}}if(!("trackDocument" in v)){v.trackDocument=a.browser.msie?false:true}if(!("keySupport" in v)){v.keySupport=a.browser.msie?false:true}var Q={trackDocument:false,baseClass:"jcrop",addClass:null,bgColor:"black",bgOpacity:0.6,borderOpacity:0.4,handleOpacity:0.5,handlePad:5,handleSize:9,handleOffset:5,edgeMargin:14,aspectRatio:0,keySupport:true,cornerHandles:true,sideHandles:true,drawBorders:true,dragEdges:true,boxWidth:0,boxHeight:0,boundary:8,animationDelay:20,swingSpeed:3,watchShift:false,minSelect:[0,0],maxSize:[0,0],minSize:[0,0],onChange:function(){},onSelect:function(){}};var E=Q;u(v);var ac=a(d).css({position:"absolute"});P(ac,E.boxWidth,E.boxHeight);var M=ac.width(),K=ac.height(),T=a("<div />").width(M).height(K).addClass(y("holder")).css({position:"relative",backgroundColor:E.bgColor});if(E.addClass){T.addClass(E.addClass)}ac.wrap(T);var F=a("<img />").attr("src",ac.attr("src")).css("position","absolute").width(M).height(K);var j=a("<div />").width(H(100)).height(H(100)).css({zIndex:310,position:"absolute",overflow:"hidden"}).append(F);var I=a("<div />").width(H(100)).height(H(100)).css({zIndex:320});var t=a("<div />").css({position:"absolute",zIndex:300}).insertBefore(ac).append(j,I);var q=E.boundary;var b=a("<div />").addClass(y("tracker")).width(M+(q*2)).height(K+(q*2)).css({position:"absolute",top:k(-q),left:k(-q),zIndex:290,opacity:0}).mousedown(W);var J,e;var X=A(d),o,z,ae,ad,x,V;if("trueSize" in E){J=E.trueSize[0]/M;e=E.trueSize[1]/K}var U=function(){var ah=0,at=0,ag=0,ar=0,ak,ai;function am(aw){var aw=aj(aw);ag=ah=aw[0];ar=at=aw[1]}function al(aw){var aw=aj(aw);ak=aw[0]-ag;ai=aw[1]-ar;ag=aw[0];ar=aw[1]}function av(){return[ak,ai]}function af(ay){var ax=ay[0],aw=ay[1];if(0>ah+ax){ax-=ax+ah}if(0>at+aw){aw-=aw+at}if(K<ar+aw){aw+=K-(ar+aw)}if(M<ag+ax){ax+=M-(ag+ax)}ah+=ax;ag+=ax;at+=aw;ar+=aw}function an(aw){var ax=au();switch(aw){case"ne":return[ax.x2,ax.y];case"nw":return[ax.x,ax.y];case"se":return[ax.x2,ax.y2];case"sw":return[ax.x,ax.y2]}}function au(){if(!E.aspectRatio&&!z){return aq()}var ax=E.aspectRatio?E.aspectRatio:z,aB=E.minSize,aE=E.maxSize,ay=ag-ah,aF=ar-at,az=Math.abs(ay),aA=Math.abs(aF),aC=az/aA,aw,aD;if(aC<ax){aD=ar;w=aA*ax;aw=ay<0?ah-w:w+ah;if(aw<0){aw=0;h=Math.abs((aw-ah)/ax);aD=aF<0?at-h:h+at}else{if(aw>M){aw=M;h=Math.abs((aw-ah)/ax);aD=aF<0?at-h:h+at}}}else{aw=ag;h=az/ax;aD=aF<0?at-h:at+h;if(aD<0){aD=0;w=Math.abs((aD-at)*ax);aw=ay<0?ah-w:w+ah}else{if(aD>K){aD=K;w=Math.abs(aD-at)*ax;aw=ay<0?ah-w:w+ah}}}return last=ap(ao(ah,at,aw,aD))}function aj(aw){if(aw[0]<0){aw[0]=0}if(aw[1]<0){aw[1]=0}if(aw[0]>M){aw[0]=M}if(aw[1]>K){aw[1]=K}return[aw[0],aw[1]]}function ao(az,aB,ay,aA){var aD=az,aC=ay,ax=aB,aw=aA;if(ay<az){aD=ay;aC=az}if(aA<aB){ax=aA;aw=aB}return[Math.round(aD),Math.round(ax),Math.round(aC),Math.round(aw)]}function aq(){var ax=ag-ah;var aw=ar-at;if(s&&(Math.abs(ax)>s)){ag=(ax>0)?(ah+s):(ah-s)}if(Z&&(Math.abs(aw)>Z)){ar=(aw>0)?(at+Z):(at-Z)}if(O&&(Math.abs(aw)<O)){ar=(aw>0)?(at+O):(at-O)}if(l&&(Math.abs(ax)<l)){ag=(ax>0)?(ah+l):(ah-l)}if(ah<0){ag-=ah;ah-=ah}if(at<0){ar-=at;at-=at}if(ag<0){ah-=ag;ag-=ag}if(ar<0){at-=ar;ar-=ar}if(ag>M){var ay=ag-M;ah-=ay;ag-=ay}if(ar>K){var ay=ar-K;at-=ay;ar-=ay}if(ah>M){var ay=ah-K;ar-=ay;at-=ay}if(at>K){var ay=at-K;ar-=ay;at-=ay}return ap(ao(ah,at,ag,ar))}function ap(aw){return{x:aw[0],y:aw[1],x2:aw[2],y2:aw[3],w:aw[2]-aw[0],h:aw[3]-aw[1]}}return{flipCoords:ao,setPressed:am,setCurrent:al,getOffset:av,moveOffset:af,getCorner:an,getFixed:au}}();var R=function(){var ak,ah,ar,aq,aA=370;var aj={};var aE={};var ag=false;var ap=E.handleOffset;if(E.drawBorders){aj={top:al("hline").css("top",a.browser.msie?k(-1):k(0)),bottom:al("hline"),left:al("vline"),right:al("vline")}}if(E.dragEdges){aE.t=az("n");aE.b=az("s");aE.r=az("e");aE.l=az("w")}E.sideHandles&&av(["n","s","e","w"]);E.cornerHandles&&av(["sw","nw","ne","se"]);function al(aH){var aI=a("<div />").css({position:"absolute",opacity:E.borderOpacity}).addClass(y(aH));j.append(aI);return aI}function af(aH,aI){var aJ=a("<div />").mousedown(c(aH)).css({cursor:aH+"-resize",position:"absolute",zIndex:aI});I.append(aJ);return aJ}function at(aH){return af(aH,aA++).css({top:k(-ap+1),left:k(-ap+1),opacity:E.handleOpacity}).addClass(y("handle"))}function az(aJ){var aM=E.handleSize,aN=ap,aL=aM,aI=aM,aK=aN,aH=aN;switch(aJ){case"n":case"s":aI=H(100);break;case"e":case"w":aL=H(100);break}return af(aJ,aA++).width(aI).height(aL).css({top:k(-aK+1),left:k(-aH+1)})}function av(aH){for(i in aH){aE[aH[i]]=at(aH[i])}}function ax(aO){var aJ=Math.round((aO.h/2)-ap),aI=Math.round((aO.w/2)-ap),aM=west=-ap+1,aL=aO.w-ap,aK=aO.h-ap,aH,aN;"e" in aE&&aE.e.css({top:k(aJ),left:k(aL)})&&aE.w.css({top:k(aJ)})&&aE.s.css({top:k(aK),left:k(aI)})&&aE.n.css({left:k(aI)});"ne" in aE&&aE.ne.css({left:k(aL)})&&aE.se.css({top:k(aK),left:k(aL)})&&aE.sw.css({top:k(aK)});"b" in aE&&aE.b.css({top:k(aK)})&&aE.r.css({left:k(aL)})}function an(aH,aI){F.css({top:k(-aI),left:k(-aH)});t.css({top:k(aI),left:k(aH)})}function aG(aH,aI){t.width(aH).height(aI)}function ai(){var aH=U.getFixed();U.setPressed([aH.x,aH.y]);U.setCurrent([aH.x2,aH.y2])}function aD(){if(aq){return am()}}function am(){var aH=U.getFixed();aG(aH.w,aH.h);an(aH.x,aH.y);E.drawBorders&&aj.right.css({left:k(aH.w-1)})&&aj.bottom.css({top:k(aH.h-1)});ag&&ax(aH);aq||aF();E.onChange(S(aH))}function aF(){t.show();ac.css("opacity",E.bgOpacity);aq=true}function aB(){aC();t.hide();ac.css("opacity",1);aq=false}function ao(){aB();ac.css("opacity",1);aq=false}function aw(){ag=true;ax(U.getFixed());I.show()}function aC(){ag=false;I.hide()}function ay(aH){(x=aH)?aC():aw()}function au(){var aH=U.getFixed();ay(false);ai()}aC();j.append(a("<div />").addClass(y("tracker")).mousedown(c("move")).css({cursor:"move",position:"absolute",zIndex:360,opacity:0}));return{updateVisible:aD,update:am,release:aB,show:aF,hide:ao,enableHandles:aw,disableHandles:aC,animMode:ay,done:au}}();var L=function(){var ag=function(){},ai=function(){},ah=E.trackDocument;if(!ah){b.mousemove(af).mouseup(aj).mouseout(aj)}function an(){if(ah){a(document).mousemove(af).mouseup(aj)}b.css({zIndex:450})}function am(){if(ah){a(document).unbind("mousemove",af).unbind("mouseup",aj)}b.css({zIndex:290})}function af(ao){ag(C(ao))}function aj(ao){ao.preventDefault();ao.stopPropagation();if(o){o=false;ai(C(ao));E.onSelect(S(U.getFixed()));am();ag=function(){};ai=function(){}}return false}function ak(ap,ao){o=true;ag=ap;ai=ao;an();return false}function al(ao){b.css("cursor",ao)}ac.before(b);return{activateHandlers:ak,setCursor:al}}();var ab=function(){var ai=a('<input type="radio" />').css({position:"absolute",left:"-30px"}).keydown(af).keyup(aj).blur(ak),al=a("<div />").css({position:"absolute",overflow:"hidden"}).append(ai);function ag(){if(E.keySupport){ai.show();ai.focus()}}function ak(am){ai.hide()}function aj(an){if(!E.watchShift){return}var ao=V,am;V=an.shiftKey?true:false;if(ao!=V){if(V&&o){am=U.getFixed();z=am.w/am.h}else{z=0}R.update()}an.stopPropagation();an.preventDefault();return false}function ah(an,am,ao){U.moveOffset([am,ao]);R.updateVisible();an.preventDefault();an.stopPropagation()}function af(an){if(an.ctrlKey){return true}aj(an);var am=V?10:1;switch(an.keyCode){case 37:ah(an,-am,0);break;case 39:ah(an,am,0);break;case 38:ah(an,0,-am);break;case 40:ah(an,0,am);break;case 27:R.release();break;case 9:return true}return false}if(E.keySupport){al.insertBefore(ac)}return{watchKeys:ag}}();function k(af){return""+parseInt(af)+"px"}function H(af){return""+parseInt(af)+"%"}function y(af){return E.baseClass+"-"+af}function A(af){var ag=a(af).offset();return[ag.left,ag.top]}function C(af){return[(af.pageX-X[0]),(af.pageY-X[1])]}function B(af){if(af!=ae){L.setCursor(af);ae=af}}function f(ag,ah){X=A(d);L.setCursor(ag=="move"?ag:ag+"-resize");if(ag=="move"){return L.activateHandlers(N(ah),m)}var af=U.getFixed();U.setPressed(U.getCorner(n(ag)));L.activateHandlers(D(ag,af),m)}function D(ag,af){return function(ah){if(!E.aspectRatio&&!z){switch(ag){case"e":ah[1]=af.y2;break;case"w":ah[1]=af.y2;break;case"n":ah[0]=af.x2;break;case"s":ah[0]=af.x2;break}}else{switch(ag){case"e":ah[1]=af.y+1;break;case"w":ah[1]=af.y+1;break;case"n":ah[0]=af.x+1;break;case"s":ah[0]=af.x+1;break}}U.setCurrent(ah);R.update()}}function N(ag){var af=ag;ab.watchKeys();return function(ah){U.moveOffset([ah[0]-af[0],ah[1]-af[1]]);af=ah;R.update()}}function n(af){switch(af){case"n":return"sw";case"s":return"nw";case"e":return"nw";case"w":return"ne";case"ne":return"sw";case"nw":return"se";case"se":return"nw";case"sw":return"ne"}}function c(af){return function(ag){o=true;f(af,C(ag));ag.stopPropagation();ag.preventDefault();return false}}function P(aj,ag,ai){var af=aj.width(),ah=aj.height();if((af>ag)&&ag>0){af=ag;ah=(ag/aj.width())*aj.height()}if((ah>ai)&&ai>0){ah=ai;af=(ai/aj.height())*aj.width()}J=aj.width()/af;e=aj.height()/ah;aj.width(af).height(ah)}function S(af){return{x:parseInt(af.x*J),y:parseInt(af.y*e),x2:parseInt(af.x2*J),y2:parseInt(af.y2*e),w:parseInt(af.w*J),h:parseInt(af.h*e)}}function m(ag){var af=U.getFixed();if(af.w>E.minSelect[0]&&af.h>E.minSelect[1]){R.enableHandles();R.done()}else{R.release()}L.setCursor("crosshair")}function W(af){o=true;X=A(d);R.release();R.disableHandles();B("crosshair");U.setPressed(C(af));L.activateHandlers(aa,m);ab.watchKeys();af.stopPropagation();af.preventDefault();return false}function aa(af){U.setCurrent(af);R.update()}function p(ax){var ar=ax[0],ag=ax[1],aq=ax[2],af=ax[3];if(x){return}var ap=U.flipCoords(ar,ag,aq,af);var av=U.getFixed();var ai=initcr=[av.x,av.y,av.x2,av.y2];var ah=E.animationDelay;var an=ai[0];var am=ai[1];var aq=ai[2];var af=ai[3];var au=ap[0]-initcr[0];var ak=ap[1]-initcr[1];var at=ap[2]-initcr[2];var aj=ap[3]-initcr[3];var ao=0;var al=E.swingSpeed;R.animMode(true);var aw=function(){return function(){ao+=(100-ao)/al;ai[0]=an+((ao/100)*au);ai[1]=am+((ao/100)*ak);ai[2]=aq+((ao/100)*at);ai[3]=af+((ao/100)*aj);if(ao<100){ay()}else{R.done()}if(ao>=99.8){ao=100}G(ai)}}();function ay(){window.setTimeout(aw,ah)}ay()}function G(af){U.setPressed([af[0],af[1]]);U.setCurrent([af[2],af[3]]);R.update()}function u(af){if(typeof(af)!="object"){af={}}E=a.extend(E,af);if(typeof(E.onChange)!=="function"){E.onChange=function(){}}if(typeof(E.onSelect)!=="function"){E.onSelect=function(){}}}function g(){return S(U.getFixed())}function Y(){return U.getFixed()}function r(af){u(af);if("setSelect" in af){G(af.setSelect);R.done()}}if(typeof(v)!="object"){v={}}if("setSelect" in v){G(v.setSelect);R.done()}var s=E.maxSize[0]||0;var Z=E.maxSize[1]||0;var l=E.minSize[0]||0;var O=E.minSize[1]||0;L.setCursor("crosshair");return{animateTo:p,setSelect:G,setOptions:r,tellSelect:g,tellScaled:Y}};a.fn.Jcrop=function(c){function b(f){var e=c.useImg||f.src;var d=new Image();var f=f;d.onload=function(){a(f).hide().after(d);f.Jcrop=a.Jcrop(d,c)};d.src=e}if(typeof(c)!=="object"){c={}}this.each(function(){if("Jcrop" in this){if(c=="api"){return this.Jcrop}else{this.Jcrop.setOptions(c)}}else{b(this)}});return this}})(jQuery); 1 /** 2 * Jcrop v.0.9.8 (minimized) 3 * (c) 2008 Kelly Hallman and DeepLiquid.com 4 * More information: http://deepliquid.com/content/Jcrop.html 5 * Released under MIT License - this header must remain with code 6 */ 7 8 9 (function($){$.Jcrop=function(obj,opt) 10 {var obj=obj,opt=opt;if(typeof(obj)!=='object')obj=$(obj)[0];if(typeof(opt)!=='object')opt={};if(!('trackDocument'in opt)) 11 {opt.trackDocument=$.browser.msie?false:true;if($.browser.msie&&$.browser.version.split('.')[0]=='8') 12 opt.trackDocument=true;} 13 if(!('keySupport'in opt)) 14 opt.keySupport=$.browser.msie?false:true;var defaults={trackDocument:false,baseClass:'jcrop',addClass:null,bgColor:'black',bgOpacity:.6,borderOpacity:.4,handleOpacity:.5,handlePad:5,handleSize:9,handleOffset:5,edgeMargin:14,aspectRatio:0,keySupport:true,cornerHandles:true,sideHandles:true,drawBorders:true,dragEdges:true,boxWidth:0,boxHeight:0,boundary:8,animationDelay:20,swingSpeed:3,allowSelect:true,allowMove:true,allowResize:true,minSelect:[0,0],maxSize:[0,0],minSize:[0,0],onChange:function(){},onSelect:function(){}};var options=defaults;setOptions(opt);var $origimg=$(obj);var $img=$origimg.clone().removeAttr('id').css({position:'absolute'});$img.width($origimg.width());$img.height($origimg.height());$origimg.after($img).hide();presize($img,options.boxWidth,options.boxHeight);var boundx=$img.width(),boundy=$img.height(),$div=$('<div />').width(boundx).height(boundy).addClass(cssClass('holder')).css({position:'relative',backgroundColor:options.bgColor}).insertAfter($origimg).append($img);;if(options.addClass)$div.addClass(options.addClass);var $img2=$('<img />').attr('src',$img.attr('src')).css('position','absolute').width(boundx).height(boundy);var $img_holder=$('<div />').width(pct(100)).height(pct(100)).css({zIndex:310,position:'absolute',overflow:'hidden'}).append($img2);var $hdl_holder=$('<div />').width(pct(100)).height(pct(100)).css('zIndex',320);var $sel=$('<div />').css({position:'absolute',zIndex:300}).insertBefore($img).append($img_holder,$hdl_holder);var bound=options.boundary;var $trk=newTracker().width(boundx+(bound*2)).height(boundy+(bound*2)).css({position:'absolute',top:px(-bound),left:px(-bound),zIndex:290}).mousedown(newSelection);var xlimit,ylimit,xmin,ymin;var xscale,yscale,enabled=true;var docOffset=getPos($img),btndown,lastcurs,dimmed,animating,shift_down;var Coords=function() 15 {var x1=0,y1=0,x2=0,y2=0,ox,oy;function setPressed(pos) 16 {var pos=rebound(pos);x2=x1=pos[0];y2=y1=pos[1];};function setCurrent(pos) 17 {var pos=rebound(pos);ox=pos[0]-x2;oy=pos[1]-y2;x2=pos[0];y2=pos[1];};function getOffset() 18 {return[ox,oy];};function moveOffset(offset) 19 {var ox=offset[0],oy=offset[1];if(0>x1+ox)ox-=ox+x1;if(0>y1+oy)oy-=oy+y1;if(boundy<y2+oy)oy+=boundy-(y2+oy);if(boundx<x2+ox)ox+=boundx-(x2+ox);x1+=ox;x2+=ox;y1+=oy;y2+=oy;};function getCorner(ord) 20 {var c=getFixed();switch(ord) 21 {case'ne':return[c.x2,c.y];case'nw':return[c.x,c.y];case'se':return[c.x2,c.y2];case'sw':return[c.x,c.y2];}};function getFixed() 22 {if(!options.aspectRatio)return getRect();var aspect=options.aspectRatio,min_x=options.minSize[0]/xscale,min_y=options.minSize[1]/yscale,max_x=options.maxSize[0]/xscale,max_y=options.maxSize[1]/yscale,rw=x2-x1,rh=y2-y1,rwa=Math.abs(rw),rha=Math.abs(rh),real_ratio=rwa/rha,xx,yy;if(max_x==0){max_x=boundx*10} 23 if(max_y==0){max_y=boundy*10} 24 if(real_ratio<aspect) 25 {yy=y2;w=rha*aspect;xx=rw<0?x1-w:w+x1;if(xx<0) 26 {xx=0;h=Math.abs((xx-x1)/aspect);yy=rh<0?y1-h:h+y1;} 27 else if(xx>boundx) 28 {xx=boundx;h=Math.abs((xx-x1)/aspect);yy=rh<0?y1-h:h+y1;}} 29 else 30 {xx=x2;h=rwa/aspect;yy=rh<0?y1-h:y1+h;if(yy<0) 31 {yy=0;w=Math.abs((yy-y1)*aspect);xx=rw<0?x1-w:w+x1;} 32 else if(yy>boundy) 33 {yy=boundy;w=Math.abs(yy-y1)*aspect;xx=rw<0?x1-w:w+x1;}} 34 if(xx>x1){if(xx-x1<min_x){xx=x1+min_x;}else if(xx-x1>max_x){xx=x1+max_x;} 35 if(yy>y1){yy=y1+(xx-x1)/aspect;}else{yy=y1-(xx-x1)/aspect;}}else if(xx<x1){if(x1-xx<min_x){xx=x1-min_x}else if(x1-xx>max_x){xx=x1-max_x;} 36 if(yy>y1){yy=y1+(x1-xx)/aspect;}else{yy=y1-(x1-xx)/aspect;}} 37 if(xx<0){x1-=xx;xx=0;}else if(xx>boundx){x1-=xx-boundx;xx=boundx;} 38 if(yy<0){y1-=yy;yy=0;}else if(yy>boundy){y1-=yy-boundy;yy=boundy;} 39 return last=makeObj(flipCoords(x1,y1,xx,yy));};function rebound(p) 40 {if(p[0]<0)p[0]=0;if(p[1]<0)p[1]=0;if(p[0]>boundx)p[0]=boundx;if(p[1]>boundy)p[1]=boundy;return[p[0],p[1]];};function flipCoords(x1,y1,x2,y2) 41 {var xa=x1,xb=x2,ya=y1,yb=y2;if(x2<x1) 42 {xa=x2;xb=x1;} 43 if(y2<y1) 44 {ya=y2;yb=y1;} 45 return[Math.round(xa),Math.round(ya),Math.round(xb),Math.round(yb)];};function getRect() 46 {var xsize=x2-x1;var ysize=y2-y1;if(xlimit&&(Math.abs(xsize)>xlimit)) 47 x2=(xsize>0)?(x1+xlimit):(x1-xlimit);if(ylimit&&(Math.abs(ysize)>ylimit)) 48 y2=(ysize>0)?(y1+ylimit):(y1-ylimit);if(ymin&&(Math.abs(ysize)<ymin)) 49 y2=(ysize>0)?(y1+ymin):(y1-ymin);if(xmin&&(Math.abs(xsize)<xmin)) 50 x2=(xsize>0)?(x1+xmin):(x1-xmin);if(x1<0){x2-=x1;x1-=x1;} 51 if(y1<0){y2-=y1;y1-=y1;} 52 if(x2<0){x1-=x2;x2-=x2;} 53 if(y2<0){y1-=y2;y2-=y2;} 54 if(x2>boundx){var delta=x2-boundx;x1-=delta;x2-=delta;} 55 if(y2>boundy){var delta=y2-boundy;y1-=delta;y2-=delta;} 56 if(x1>boundx){var delta=x1-boundy;y2-=delta;y1-=delta;} 57 if(y1>boundy){var delta=y1-boundy;y2-=delta;y1-=delta;} 58 return makeObj(flipCoords(x1,y1,x2,y2));};function makeObj(a) 59 {return{x:a[0],y:a[1],x2:a[2],y2:a[3],w:a[2]-a[0],h:a[3]-a[1]};};return{flipCoords:flipCoords,setPressed:setPressed,setCurrent:setCurrent,getOffset:getOffset,moveOffset:moveOffset,getCorner:getCorner,getFixed:getFixed};}();var Selection=function() 60 {var start,end,dragmode,awake,hdep=370;var borders={};var handle={};var seehandles=false;var hhs=options.handleOffset;if(options.drawBorders){borders={top:insertBorder('hline').css('top',$.browser.msie?px(-1):px(0)),bottom:insertBorder('hline'),left:insertBorder('vline'),right:insertBorder('vline')};} 61 if(options.dragEdges){handle.t=insertDragbar('n');handle.b=insertDragbar('s');handle.r=insertDragbar('e');handle.l=insertDragbar('w');} 62 options.sideHandles&&createHandles(['n','s','e','w']);options.cornerHandles&&createHandles(['sw','nw','ne','se']);function insertBorder(type) 63 {var jq=$('<div />').css({position:'absolute',opacity:options.borderOpacity}).addClass(cssClass(type));$img_holder.append(jq);return jq;};function dragDiv(ord,zi) 64 {var jq=$('<div />').mousedown(createDragger(ord)).css({cursor:ord+'-resize',position:'absolute',zIndex:zi});$hdl_holder.append(jq);return jq;};function insertHandle(ord) 65 {return dragDiv(ord,hdep++).css({top:px(-hhs+1),left:px(-hhs+1),opacity:options.handleOpacity}).addClass(cssClass('handle'));};function insertDragbar(ord) 66 {var s=options.handleSize,o=hhs,h=s,w=s,t=o,l=o;switch(ord) 67 {case'n':case's':w=pct(100);break;case'e':case'w':h=pct(100);break;} 68 return dragDiv(ord,hdep++).width(w).height(h).css({top:px(-t+1),left:px(-l+1)});};function createHandles(li) 69 {for(i in li)handle[li[i]]=insertHandle(li[i]);};function moveHandles(c) 70 {var midvert=Math.round((c.h/2)-hhs),midhoriz=Math.round((c.w/2)-hhs),north=west=-hhs+1,east=c.w-hhs,south=c.h-hhs,x,y;'e'in handle&&handle.e.css({top:px(midvert),left:px(east)})&&handle.w.css({top:px(midvert)})&&handle.s.css({top:px(south),left:px(midhoriz)})&&handle.n.css({left:px(midhoriz)});'ne'in handle&&handle.ne.css({left:px(east)})&&handle.se.css({top:px(south),left:px(east)})&&handle.sw.css({top:px(south)});'b'in handle&&handle.b.css({top:px(south)})&&handle.r.css({left:px(east)});};function moveto(x,y) 71 {$img2.css({top:px(-y),left:px(-x)});$sel.css({top:px(y),left:px(x)});};function resize(w,h) 72 {$sel.width(w).height(h);};function refresh() 73 {var c=Coords.getFixed();Coords.setPressed([c.x,c.y]);Coords.setCurrent([c.x2,c.y2]);updateVisible();};function updateVisible() 74 {if(awake)return update();};function update() 75 {var c=Coords.getFixed();resize(c.w,c.h);moveto(c.x,c.y);options.drawBorders&&borders['right'].css({left:px(c.w-1)})&&borders['bottom'].css({top:px(c.h-1)});seehandles&&moveHandles(c);awake||show();options.onChange(unscale(c));};function show() 76 {$sel.show();$img.css('opacity',options.bgOpacity);awake=true;};function release() 77 {disableHandles();$sel.hide();$img.css('opacity',1);awake=false;};function showHandles() 78 {if(seehandles) 79 {moveHandles(Coords.getFixed());$hdl_holder.show();}};function enableHandles() 80 {seehandles=true;if(options.allowResize) 81 {moveHandles(Coords.getFixed());$hdl_holder.show();return true;}};function disableHandles() 82 {seehandles=false;$hdl_holder.hide();};function animMode(v) 83 {(animating=v)?disableHandles():enableHandles();};function done() 84 {animMode(false);refresh();};var $track=newTracker().mousedown(createDragger('move')).css({cursor:'move',position:'absolute',zIndex:360}) 85 $img_holder.append($track);disableHandles();return{updateVisible:updateVisible,update:update,release:release,refresh:refresh,setCursor:function(cursor){$track.css('cursor',cursor);},enableHandles:enableHandles,enableOnly:function(){seehandles=true;},showHandles:showHandles,disableHandles:disableHandles,animMode:animMode,done:done};}();var Tracker=function() 86 {var onMove=function(){},onDone=function(){},trackDoc=options.trackDocument;if(!trackDoc) 87 {$trk.mousemove(trackMove).mouseup(trackUp).mouseout(trackUp);} 88 function toFront() 89 {$trk.css({zIndex:450});if(trackDoc) 90 {$(document).mousemove(trackMove).mouseup(trackUp);}} 91 function toBack() 92 {$trk.css({zIndex:290});if(trackDoc) 93 {$(document).unbind('mousemove',trackMove).unbind('mouseup',trackUp);}} 94 function trackMove(e) 95 {onMove(mouseAbs(e));};function trackUp(e) 96 {e.preventDefault();e.stopPropagation();if(btndown) 97 {btndown=false;onDone(mouseAbs(e));options.onSelect(unscale(Coords.getFixed()));toBack();onMove=function(){};onDone=function(){};} 98 return false;};function activateHandlers(move,done) 99 {btndown=true;onMove=move;onDone=done;toFront();return false;};function setCursor(t){$trk.css('cursor',t);};$img.before($trk);return{activateHandlers:activateHandlers,setCursor:setCursor};}();var KeyManager=function() 100 {var $keymgr=$('<input type="radio" />').css({position:'absolute',left:'-30px'}).keypress(parseKey).blur(onBlur),$keywrap=$('<div />').css({position:'absolute',overflow:'hidden'}).append($keymgr);function watchKeys() 101 {if(options.keySupport) 102 {$keymgr.show();$keymgr.focus();}};function onBlur(e) 103 {$keymgr.hide();};function doNudge(e,x,y) 104 {if(options.allowMove){Coords.moveOffset([x,y]);Selection.updateVisible();};e.preventDefault();e.stopPropagation();};function parseKey(e) 105 {if(e.ctrlKey)return true;shift_down=e.shiftKey?true:false;var nudge=shift_down?10:1;switch(e.keyCode) 106 {case 37:doNudge(e,-nudge,0);break;case 39:doNudge(e,nudge,0);break;case 38:doNudge(e,0,-nudge);break;case 40:doNudge(e,0,nudge);break;case 27:Selection.release();break;case 9:return true;} 107 return nothing(e);};if(options.keySupport)$keywrap.insertBefore($img);return{watchKeys:watchKeys};}();function px(n){return''+parseInt(n)+'px';};function pct(n){return''+parseInt(n)+'%';};function cssClass(cl){return options.baseClass+'-'+cl;};function getPos(obj) 108 {var pos=$(obj).offset();return[pos.left,pos.top];};function mouseAbs(e) 109 {return[(e.pageX-docOffset[0]),(e.pageY-docOffset[1])];};function myCursor(type) 110 {if(type!=lastcurs) 111 {Tracker.setCursor(type);lastcurs=type;}};function startDragMode(mode,pos) 112 {docOffset=getPos($img);Tracker.setCursor(mode=='move'?mode:mode+'-resize');if(mode=='move') 113 return Tracker.activateHandlers(createMover(pos),doneSelect);var fc=Coords.getFixed();var opp=oppLockCorner(mode);var opc=Coords.getCorner(oppLockCorner(opp));Coords.setPressed(Coords.getCorner(opp));Coords.setCurrent(opc);Tracker.activateHandlers(dragmodeHandler(mode,fc),doneSelect);};function dragmodeHandler(mode,f) 114 {return function(pos){if(!options.aspectRatio)switch(mode) 115 {case'e':pos[1]=f.y2;break;case'w':pos[1]=f.y2;break;case'n':pos[0]=f.x2;break;case's':pos[0]=f.x2;break;} 116 else switch(mode) 117 {case'e':pos[1]=f.y+1;break;case'w':pos[1]=f.y+1;break;case'n':pos[0]=f.x+1;break;case's':pos[0]=f.x+1;break;} 118 Coords.setCurrent(pos);Selection.update();};};function createMover(pos) 119 {var lloc=pos;KeyManager.watchKeys();return function(pos) 120 {Coords.moveOffset([pos[0]-lloc[0],pos[1]-lloc[1]]);lloc=pos;Selection.update();};};function oppLockCorner(ord) 121 {switch(ord) 122 {case'n':return'sw';case's':return'nw';case'e':return'nw';case'w':return'ne';case'ne':return'sw';case'nw':return'se';case'se':return'nw';case'sw':return'ne';};};function createDragger(ord) 123 {return function(e){if(options.disabled)return false;if((ord=='move')&&!options.allowMove)return false;btndown=true;startDragMode(ord,mouseAbs(e));e.stopPropagation();e.preventDefault();return false;};};function presize($obj,w,h) 124 {var nw=$obj.width(),nh=$obj.height();if((nw>w)&&w>0) 125 {nw=w;nh=(w/$obj.width())*$obj.height();} 126 if((nh>h)&&h>0) 127 {nh=h;nw=(h/$obj.height())*$obj.width();} 128 xscale=$obj.width()/nw;yscale=$obj.height()/nh;$obj.width(nw).height(nh);};function unscale(c) 129 {return{x:parseInt(c.x*xscale),y:parseInt(c.y*yscale),x2:parseInt(c.x2*xscale),y2:parseInt(c.y2*yscale),w:parseInt(c.w*xscale),h:parseInt(c.h*yscale)};};function doneSelect(pos) 130 {var c=Coords.getFixed();if(c.w>options.minSelect[0]&&c.h>options.minSelect[1]) 131 {Selection.enableHandles();Selection.done();} 132 else 133 {Selection.release();} 134 Tracker.setCursor(options.allowSelect?'crosshair':'default');};function newSelection(e) 135 {if(options.disabled)return false;if(!options.allowSelect)return false;btndown=true;docOffset=getPos($img);Selection.disableHandles();myCursor('crosshair');var pos=mouseAbs(e);Coords.setPressed(pos);Tracker.activateHandlers(selectDrag,doneSelect);KeyManager.watchKeys();Selection.update();e.stopPropagation();e.preventDefault();return false;};function selectDrag(pos) 136 {Coords.setCurrent(pos);Selection.update();};function newTracker() 137 {var trk=$('<div></div>').addClass(cssClass('tracker'));$.browser.msie&&trk.css({opacity:0,backgroundColor:'white'});return trk;};function animateTo(a) 138 {var x1=a[0]/xscale,y1=a[1]/yscale,x2=a[2]/xscale,y2=a[3]/yscale;if(animating)return;var animto=Coords.flipCoords(x1,y1,x2,y2);var c=Coords.getFixed();var animat=initcr=[c.x,c.y,c.x2,c.y2];var interv=options.animationDelay;var x=animat[0];var y=animat[1];var x2=animat[2];var y2=animat[3];var ix1=animto[0]-initcr[0];var iy1=animto[1]-initcr[1];var ix2=animto[2]-initcr[2];var iy2=animto[3]-initcr[3];var pcent=0;var velocity=options.swingSpeed;Selection.animMode(true);var animator=function() 139 {return function() 140 {pcent+=(100-pcent)/velocity;animat[0]=x+((pcent/100)*ix1);animat[1]=y+((pcent/100)*iy1);animat[2]=x2+((pcent/100)*ix2);animat[3]=y2+((pcent/100)*iy2);if(pcent<100)animateStart();else Selection.done();if(pcent>=99.8)pcent=100;setSelectRaw(animat);};}();function animateStart() 141 {window.setTimeout(animator,interv);};animateStart();};function setSelect(rect) 142 {setSelectRaw([rect[0]/xscale,rect[1]/yscale,rect[2]/xscale,rect[3]/yscale]);};function setSelectRaw(l) 143 {Coords.setPressed([l[0],l[1]]);Coords.setCurrent([l[2],l[3]]);Selection.update();};function setOptions(opt) 144 {if(typeof(opt)!='object')opt={};options=$.extend(options,opt);if(typeof(options.onChange)!=='function') 145 options.onChange=function(){};if(typeof(options.onSelect)!=='function') 146 options.onSelect=function(){};};function tellSelect() 147 {return unscale(Coords.getFixed());};function tellScaled() 148 {return Coords.getFixed();};function setOptionsNew(opt) 149 {setOptions(opt);interfaceUpdate();};function disableCrop() 150 {options.disabled=true;Selection.disableHandles();Selection.setCursor('default');Tracker.setCursor('default');};function enableCrop() 151 {options.disabled=false;interfaceUpdate();};function cancelCrop() 152 {Selection.done();Tracker.activateHandlers(null,null);};function destroy() 153 {$div.remove();$origimg.show();};function interfaceUpdate(alt) 154 {options.allowResize?alt?Selection.enableOnly():Selection.enableHandles():Selection.disableHandles();Tracker.setCursor(options.allowSelect?'crosshair':'default');Selection.setCursor(options.allowMove?'move':'default');$div.css('backgroundColor',options.bgColor);if('setSelect'in options){setSelect(opt.setSelect);Selection.done();delete(options.setSelect);} 155 if('trueSize'in options){xscale=options.trueSize[0]/boundx;yscale=options.trueSize[1]/boundy;} 156 xlimit=options.maxSize[0]||0;ylimit=options.maxSize[1]||0;xmin=options.minSize[0]||0;ymin=options.minSize[1]||0;if('outerImage'in options) 157 {$img.attr('src',options.outerImage);delete(options.outerImage);} 158 Selection.refresh();};$hdl_holder.hide();interfaceUpdate(true);var api={animateTo:animateTo,setSelect:setSelect,setOptions:setOptionsNew,tellSelect:tellSelect,tellScaled:tellScaled,disable:disableCrop,enable:enableCrop,cancel:cancelCrop,focus:KeyManager.watchKeys,getBounds:function(){return[boundx*xscale,boundy*yscale];},getWidgetSize:function(){return[boundx,boundy];},release:Selection.release,destroy:destroy};$origimg.data('Jcrop',api);return api;};$.fn.Jcrop=function(options) 159 {function attachWhenDone(from) 160 {var loadsrc=options.useImg||from.src;var img=new Image();img.onload=function(){$.Jcrop(from,options);};img.src=loadsrc;};if(typeof(options)!=='object')options={};this.each(function() 161 {if($(this).data('Jcrop')) 162 {if(options=='api')return $(this).data('Jcrop');else $(this).data('Jcrop').setOptions(options);} 163 else attachWhenDone(this);});return this;};})(jQuery); -
trunk/wp-includes/script-loader.php
r11013 r11015 168 168 $scripts->add_data( 'thickbox', 'group', 1 ); 169 169 170 $scripts->add( 'jcrop', "/wp-includes/js/jcrop/jquery.Jcrop$suffix.js", array('jquery'), '0.9. 5-1');170 $scripts->add( 'jcrop', "/wp-includes/js/jcrop/jquery.Jcrop$suffix.js", array('jquery'), '0.9.8'); 171 171 172 172 if ( defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ) { … … 443 443 $styles->add( 'theme-install', '/wp-admin/css/theme-install.css', array(), '20090319' ); 444 444 $styles->add( 'farbtastic', '/wp-admin/css/farbtastic.css', array(), '1.2' ); 445 $styles->add( 'jcrop', '/wp-includes/js/jcrop/jquery.Jcrop.css', array(), '0.9. 5' );445 $styles->add( 'jcrop', '/wp-includes/js/jcrop/jquery.Jcrop.css', array(), '0.9.8' ); 446 446 447 447 foreach ( $rtl_styles as $rtl_style )
Note: See TracChangeset
for help on using the changeset viewer.