Make WordPress Core

Ticket #9545: Jcrop.IE8.diff

File Jcrop.IE8.diff, 46.2 KB (added by nbachiyski, 15 years ago)
  • wp-includes/js/jcrop/jquery.Jcrop.css

     
    11/* 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; }
    63
    74.jcrop-vline, .jcrop-hline
    85{
    96        font-size: 0;
    107        position: absolute;
    118        background: white url('Jcrop.gif') top left repeat;
    12         /*
    13         opacity: .5;
    14         *filter:alpha(opacity=50);
    15         */
    169}
    1710.jcrop-vline { height: 100%; width: 1px !important; }
    1811.jcrop-hline { width: 100%; height: 1px !important; }
     
    2619        *height: 9px;
    2720}
    2821
    29 .jcrop-tracker {
    30         *background-color: gray;
    31         width: 100%; height: 100%;
    32 }
     22.jcrop-tracker { width: 100%; height: 100%; }
    3323
    3424.custom .jcrop-vline,
    3525.custom .jcrop-hline
  • wp-includes/js/jcrop/jquery.Jcrop.dev.js

     
    11/**
    2  * jquery.Jcrop.js v0.9.5
     2 * jquery.Jcrop.js v0.9.8
    33 * 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 {{{
    66 *
    77 * Permission is hereby granted, free of charge, to any person
    88 * obtaining a copy of this software and associated documentation
     
    2727
    2828 * }}}
    2929 */
     30
    3031(function($) {
     32
    3133$.Jcrop = function(obj,opt)
    3234{
    3335        // Initialization {{{
     
    3840        if (typeof(obj) !== 'object') obj = $(obj)[0];
    3941        if (typeof(opt) !== 'object') opt = { };
    4042
     43        // Some on-the-fly fixes for MSIE...sigh
    4144        if (!('trackDocument' in opt))
     45        {
    4246                opt.trackDocument = $.browser.msie ? false : true;
     47                if ($.browser.msie && $.browser.version.split('.')[0] == '8')
     48                        opt.trackDocument = true;
     49        }
    4350
    4451        if (!('keySupport' in opt))
    45                 opt.keySupport = $.browser.msie ? false : true;
    46        
     52                        opt.keySupport = $.browser.msie ? false : true;
     53               
    4754        // }}}
    4855        // Extend the default options {{{
    4956        var defaults = {
     
    7885                animationDelay:         20,
    7986                swingSpeed:                     3,
    8087
    81                 watchShift:                     false,
     88                allowSelect:            true,
     89                allowMove:                      true,
     90                allowResize:            true,
     91
    8292                minSelect:                      [ 0, 0 ],
    8393                maxSize:                        [ 0, 0 ],
    8494                minSize:                        [ 0, 0 ],
     
    94104        // }}}
    95105        // Initialize some jQuery objects {{{
    96106
    97         var $img = $(obj).css({ position: 'absolute' });
     107        var $origimg = $(obj);
     108        var $img = $origimg.clone().removeAttr('id').css({ position: 'absolute' });
    98109
     110        $img.width($origimg.width());
     111        $img.height($origimg.height());
     112        $origimg.after($img).hide();
     113
    99114        presize($img,options.boxWidth,options.boxHeight);
    100115
    101116        var boundx = $img.width(),
     
    106121                        .addClass(cssClass('holder'))
    107122                        .css({
    108123                                position: 'relative',
    109                                 //overflow: 'hidden',
    110124                                backgroundColor: options.bgColor
    111                         })
     125                        }).insertAfter($origimg).append($img);
    112126        ;
    113127       
    114128        if (options.addClass) $div.addClass(options.addClass);
    115         $img.wrap($div);
     129        //$img.wrap($div);
    116130
    117131        var $img2 = $('<img />')/*{{{*/
    118132                        .attr('src',$img.attr('src'))
     
    130144        ;/*}}}*/
    131145        var $hdl_holder = $('<div />')/*{{{*/
    132146                .width(pct(100)).height(pct(100))
    133                 .css({
    134                         zIndex: 320
    135                         //position: 'absolute'
    136                 })
    137         ;/*}}}*/
     147                .css('zIndex',320);
     148        /*}}}*/
    138149        var $sel = $('<div />')/*{{{*/
    139150                .css({
    140151                        position: 'absolute',
     
    145156        ;/*}}}*/
    146157
    147158        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);       
    161162       
    162163        /* }}} */
    163164        // Set more variables {{{
    164165
    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),
    167169                // Internal states
    168                 btndown, aspectLock, lastcurs, dimmed, animating,
     170                btndown, lastcurs, dimmed, animating,
    169171                shift_down;
    170172
    171173        // }}}
    172         if ('trueSize' in options)/*{{{*/
    173         {
    174                 xscale = options.trueSize[0] / boundx;
    175                 yscale = options.trueSize[1] / boundy;
    176         }
    177         /*}}}*/
     174               
    178175
    179         // }}}
     176                // }}}
    180177        // Internal Modules {{{
    181178
    182179        var Coords = function()/*{{{*/
     
    234231                /*}}}*/
    235232                function getFixed()/*{{{*/
    236233                {
    237                         if (!options.aspectRatio && !aspectLock) return getRect();
    238 
     234                        if (!options.aspectRatio) return getRect();
    239235                        // 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,
    243241                                rw = x2 - x1,
    244242                                rh = y2 - y1,
    245243                                rwa = Math.abs(rw),
     
    247245                                real_ratio = rwa / rha,
    248246                                xx, yy
    249247                        ;
    250                        
     248                        if (max_x == 0) { max_x = boundx * 10 }
     249                        if (max_y == 0) { max_y = boundy * 10 }
    251250                        if (real_ratio < aspect)
    252251                        {
    253252                                yy = y2;
     
    285284                                        xx = rw < 0 ? x1 - w : w + x1;
    286285                                }
    287286                        }
     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
    288329                        return last = makeObj(flipCoords(x1,y1,xx,yy));
    289330                };
    290331                /*}}}*/
     
    490531                /*}}}*/
    491532                function refresh()/*{{{*/
    492533                {
    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();
    496540                };
    497541                /*}}}*/
    498542
    499543                // Internal Methods
    500544                function updateVisible()/*{{{*/
    501                 { if (awake) return update(); };
     545                        { if (awake) return update(); };
    502546                /*}}}*/
    503547                function update()/*{{{*/
    504548                {
     
    532576                        awake = false;
    533577                };
    534578                /*}}}*/
    535                 function hide()/*{{{*/
     579                function showHandles()//{{{
    536580                {
    537                         release();
    538                         $img.css('opacity',1);
    539                         awake = false;
     581                        if (seehandles)
     582                        {
     583                                moveHandles(Coords.getFixed());
     584                                $hdl_holder.show();
     585                        }
    540586                };
    541                 /*}}}*/
     587                //}}}
    542588                function enableHandles()/*{{{*/
    543589                {
    544590                        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                        }
    547597                };
    548598                /*}}}*/
    549599                function disableHandles()/*{{{*/
     
    559609                /*}}}*/
    560610                function done()/*{{{*/
    561611                {
    562                         var c = Coords.getFixed();
    563612                        animMode(false);
    564613                        refresh();
    565614                };
    566615                /*}}}*/
    567616
     617                var $track = newTracker().mousedown(createDragger('move'))
     618                                .css({ cursor: 'move', position: 'absolute', zIndex: 360 })
     619
     620                $img_holder.append($track);
    568621                disableHandles();
    569622
    570                 $img_holder.append
    571                 (
    572                         $('<div />')
    573                                 .addClass(cssClass('tracker'))
    574                                 .mousedown(createDragger('move'))
    575                                 .css({ cursor: 'move', position: 'absolute', zIndex: 360, opacity: 0 })
    576                 );
    577 
    578623                return {
    579624                        updateVisible: updateVisible,
    580625                        update: update,
    581626                        release: release,
    582                         show: show,
    583                         hide: hide,
     627                        refresh: refresh,
     628                        setCursor: function (cursor) { $track.css('cursor',cursor); },
    584629                        enableHandles: enableHandles,
     630                        enableOnly: function() { seehandles = true; },
     631                        showHandles: showHandles,
    585632                        disableHandles: disableHandles,
    586633                        animMode: animMode,
    587634                        done: done
     
    605652
    606653                function toFront()/*{{{*/
    607654                {
     655                        $trk.css({zIndex:450});
    608656                        if (trackDoc)
    609657                        {
    610658                                $(document)
     
    612660                                        .mouseup(trackUp)
    613661                                ;
    614662                        }
    615                         $trk.css({zIndex:450});
    616663                }
    617664                /*}}}*/
    618665                function toBack()/*{{{*/
    619666                {
     667                        $trk.css({zIndex:290});
    620668                        if (trackDoc)
    621669                        {
    622670                                $(document)
     
    624672                                        .unbind('mouseup',trackUp)
    625673                                ;
    626674                        }
    627                         $trk.css({zIndex:290});
    628675                }
    629676                /*}}}*/
    630677                function trackMove(e)/*{{{*/
     
    675722        {
    676723                var $keymgr = $('<input type="radio" />')
    677724                                .css({ position: 'absolute', left: '-30px' })
    678                                 .keydown(parseKey)
    679                                 .keyup(watchShift)
     725                                .keypress(parseKey)
    680726                                .blur(onBlur),
    681727
    682728                        $keywrap = $('<div />')
     
    701747                        $keymgr.hide();
    702748                };
    703749                /*}}}*/
    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                 /*}}}*/
    722750                function doNudge(e,x,y)/*{{{*/
    723751                {
    724                         Coords.moveOffset([x,y]);
    725                         Selection.updateVisible();
     752                        if (options.allowMove) {
     753                                Coords.moveOffset([x,y]);
     754                                Selection.updateVisible();
     755                        };
    726756                        e.preventDefault();
    727757                        e.stopPropagation();
    728758                };
     
    730760                function parseKey(e)/*{{{*/
    731761                {
    732762                        if (e.ctrlKey) return true;
    733                         watchShift(e);
     763                        shift_down = e.shiftKey ? true : false;
    734764                        var nudge = shift_down ? 10 : 1;
    735765                        switch(e.keyCode)
    736766                        {
     
    744774                                case 9: return true;
    745775                        }
    746776
    747                         return false;
     777                        return nothing(e);
    748778                };
    749779                /*}}}*/
    750780               
     
    785815        /*}}}*/
    786816        function startDragMode(mode,pos)/*{{{*/
    787817        {
    788                 docOffset = getPos(obj);
     818                docOffset = getPos($img);
    789819                Tracker.setCursor(mode=='move'?mode:mode+'-resize');
    790820
    791821                if (mode == 'move')
    792822                        return Tracker.activateHandlers(createMover(pos), doneSelect);
    793823
    794824                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
    796831                Tracker.activateHandlers(dragmodeHandler(mode,fc),doneSelect);
    797832        };
    798833        /*}}}*/
    799834        function dragmodeHandler(mode,f)/*{{{*/
    800835        {
    801836                return function(pos) {
    802                         if (!options.aspectRatio && !aspectLock) switch(mode)
     837                        if (!options.aspectRatio) switch(mode)
    803838                        {
    804839                                case 'e': pos[1] = f.y2; break;
    805840                                case 'w': pos[1] = f.y2; break;
     
    850885        function createDragger(ord)/*{{{*/
    851886        {
    852887                return function(e) {
     888                        if (options.disabled) return false;
     889                        if ((ord == 'move') && !options.allowMove) return false;
    853890                        btndown = true;
    854891                        startDragMode(ord,mouseAbs(e));
    855892                        e.stopPropagation();
     
    897934                {
    898935                        Selection.release();
    899936                }
    900                 Tracker.setCursor('crosshair');
     937                Tracker.setCursor( options.allowSelect?'crosshair':'default' );
    901938        };
    902939        /*}}}*/
    903940        function newSelection(e)/*{{{*/
    904941        {
     942                if (options.disabled) return false;
     943                if (!options.allowSelect) return false;
    905944                btndown = true;
    906                 docOffset = getPos(obj);
    907                 Selection.release();
     945                docOffset = getPos($img);
    908946                Selection.disableHandles();
    909947                myCursor('crosshair');
    910                 Coords.setPressed(mouseAbs(e));
     948                var pos = mouseAbs(e);
     949                Coords.setPressed(pos);
    911950                Tracker.activateHandlers(selectDrag,doneSelect);
    912951                KeyManager.watchKeys();
     952                Selection.update();
    913953
    914954                e.stopPropagation();
    915955                e.preventDefault();
     
    920960        {
    921961                Coords.setCurrent(pos);
    922962                Selection.update();
    923 
    924963        };
    925964        /*}}}*/
     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        };
    926971
    927972        // }}}
    928         // Public API {{{
    929        
     973        // API methods {{{
     974               
    930975        function animateTo(a)/*{{{*/
    931976        {
    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;
    936981
    937982                if (animating) return;
     983
    938984                var animto = Coords.flipCoords(x1,y1,x2,y2);
    939985                var c = Coords.getFixed();
    940986                var animat = initcr = [ c.x, c.y, c.x2, c.y2 ];
    941987                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;
    946988
    947989                var x = animat[0];
    948990                var y = animat[1];
     
    9731015
    9741016                                if (pcent >= 99.8) pcent = 100;
    9751017
    976                                 setSelect(animat);
     1018                                setSelectRaw(animat);
    9771019                        };
    9781020                }();
    9791021
     
    9811023                        { window.setTimeout(animator,interv); };
    9821024
    9831025                animateStart();
    984 
    9851026        };
    9861027        /*}}}*/
    987         function setSelect(l) /*{{{*/
     1028        function setSelect(rect)//{{{
    9881029        {
     1030                setSelectRaw([rect[0]/xscale,rect[1]/yscale,rect[2]/xscale,rect[3]/yscale]);
     1031        };
     1032        //}}}
     1033        function setSelectRaw(l) /*{{{*/
     1034        {
    9891035                Coords.setPressed([l[0],l[1]]);
    9901036                Coords.setCurrent([l[2],l[3]]);
    9911037                Selection.update();
     
    10011047
    10021048                if (typeof(options.onSelect)!=='function')
    10031049                        options.onSelect = function() { };
     1050
    10041051        };
    10051052        /*}}}*/
    10061053        function tellSelect()/*{{{*/
     
    10161063        function setOptionsNew(opt)/*{{{*/
    10171064        {
    10181065                setOptions(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        //}}}
    10191095
    1020                 if ('setSelect' in opt) {
     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) {
    10211110                        setSelect(opt.setSelect);
    10221111                        Selection.done();
     1112                        delete(options.setSelect);
    10231113                }
     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();
    10241132        };
    1025         /*}}}*/
     1133        //}}}
    10261134
    1027         if (typeof(opt) != 'object') opt = { };
    1028         if ('setSelect' in opt) { setSelect(opt.setSelect); Selection.done(); }
    1029 
    10301135        // }}}
    10311136
    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);
    10381139       
    1039         return {
     1140        var api = {
    10401141                animateTo: animateTo,
    10411142                setSelect: setSelect,
    10421143                setOptions: setOptionsNew,
    10431144                tellSelect: tellSelect,
    1044                 tellScaled: tellScaled
     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
    10451159        };
     1160
     1161        $origimg.data('Jcrop',api);
     1162        return api;
    10461163};
    10471164
    1048 
    10491165$.fn.Jcrop = function(options)/*{{{*/
    10501166{
    10511167        function attachWhenDone(from)/*{{{*/
    10521168        {
    10531169                var loadsrc = options.useImg || from.src;
    10541170                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); };
    10601172                img.src = loadsrc;
    10611173        };
    10621174        /*}}}*/
     
    10661178        this.each(function()
    10671179        {
    10681180                // If we've already attached to this object
    1069                 if ('Jcrop' in this)
     1181                if ($(this).data('Jcrop'))
    10701182                {
    10711183                        // The API can be requested this way (undocumented)
    1072                         if (options == 'api') return this.Jcrop;
     1184                        if (options == 'api') return $(this).data('Jcrop');
    10731185                        // Otherwise, we just reset the options...
    1074                         else this.Jcrop.setOptions(options);
     1186                        else $(this).data('Jcrop').setOptions(options);
    10751187                }
    10761188                // If we haven't been attached, preload and attach
    10771189                else attachWhenDone(this);
     
    10801192        // Return "this" so we're chainable a la jQuery plugin-style!
    10811193        return this;
    10821194};
     1195/*}}}*/
     1196
    10831197})(jQuery);
    1084 /*}}}*/
    1085  No newline at end of file
  • wp-includes/js/jcrop/jquery.Jcrop.js

     
    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);
    2  No newline at end of file
     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')
     12opt.trackDocument=true;}
     13if(!('keySupport'in opt))
     14opt.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}
     23if(max_y==0){max_y=boundy*10}
     24if(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;}
     27else if(xx>boundx)
     28{xx=boundx;h=Math.abs((xx-x1)/aspect);yy=rh<0?y1-h:h+y1;}}
     29else
     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;}
     32else if(yy>boundy)
     33{yy=boundy;w=Math.abs(yy-y1)*aspect;xx=rw<0?x1-w:w+x1;}}
     34if(xx>x1){if(xx-x1<min_x){xx=x1+min_x;}else if(xx-x1>max_x){xx=x1+max_x;}
     35if(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;}
     36if(yy>y1){yy=y1+(x1-xx)/aspect;}else{yy=y1-(x1-xx)/aspect;}}
     37if(xx<0){x1-=xx;xx=0;}else if(xx>boundx){x1-=xx-boundx;xx=boundx;}
     38if(yy<0){y1-=yy;yy=0;}else if(yy>boundy){y1-=yy-boundy;yy=boundy;}
     39return 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;}
     43if(y2<y1)
     44{ya=y2;yb=y1;}
     45return[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))
     47x2=(xsize>0)?(x1+xlimit):(x1-xlimit);if(ylimit&&(Math.abs(ysize)>ylimit))
     48y2=(ysize>0)?(y1+ylimit):(y1-ylimit);if(ymin&&(Math.abs(ysize)<ymin))
     49y2=(ysize>0)?(y1+ymin):(y1-ymin);if(xmin&&(Math.abs(xsize)<xmin))
     50x2=(xsize>0)?(x1+xmin):(x1-xmin);if(x1<0){x2-=x1;x1-=x1;}
     51if(y1<0){y2-=y1;y1-=y1;}
     52if(x2<0){x1-=x2;x2-=x2;}
     53if(y2<0){y1-=y2;y2-=y2;}
     54if(x2>boundx){var delta=x2-boundx;x1-=delta;x2-=delta;}
     55if(y2>boundy){var delta=y2-boundy;y1-=delta;y2-=delta;}
     56if(x1>boundx){var delta=x1-boundy;y2-=delta;y1-=delta;}
     57if(y1>boundy){var delta=y1-boundy;y2-=delta;y1-=delta;}
     58return 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')};}
     61if(options.dragEdges){handle.t=insertDragbar('n');handle.b=insertDragbar('s');handle.r=insertDragbar('e');handle.l=insertDragbar('w');}
     62options.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;}
     68return 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);}
     88function toFront()
     89{$trk.css({zIndex:450});if(trackDoc)
     90{$(document).mousemove(trackMove).mouseup(trackUp);}}
     91function toBack()
     92{$trk.css({zIndex:290});if(trackDoc)
     93{$(document).unbind('mousemove',trackMove).unbind('mouseup',trackUp);}}
     94function 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(){};}
     98return 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;}
     107return 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')
     113return 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;}
     116else 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;}
     118Coords.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();}
     126if((nh>h)&&h>0)
     127{nh=h;nw=(h/$obj.height())*$obj.width();}
     128xscale=$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();}
     132else
     133{Selection.release();}
     134Tracker.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')
     145options.onChange=function(){};if(typeof(options.onSelect)!=='function')
     146options.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);}
     155if('trueSize'in options){xscale=options.trueSize[0]/boundx;yscale=options.trueSize[1]/boundy;}
     156xlimit=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);}
     158Selection.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);}
     163else attachWhenDone(this);});return this;};})(jQuery);
     164 No newline at end of file
  • wp-includes/script-loader.php

     
    167167        $scripts->add( 'thickbox', "/wp-includes/js/thickbox/thickbox.js", array('jquery'), '3.1-20090123');
    168168        $scripts->add_data( 'thickbox', 'group', 1 );
    169169
    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');
    171171
    172172        if ( defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ) {
    173173                $scripts->add( 'swfupload', '/wp-includes/js/swfupload/swfupload.js', false, '2.2.0-20081031');
     
    442442        $styles->add( 'plugin-install', '/wp-admin/css/plugin-install.css', array(), '20081210' );
    443443        $styles->add( 'theme-install', '/wp-admin/css/theme-install.css', array(), '20090319' );
    444444        $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' );
    446446
    447447        foreach ( $rtl_styles as $rtl_style )
    448448                $styles->add_data( $rtl_style, 'rtl', true );