Index: trunk/extensions/MetavidWiki/skins/mv_embed/jquery/plugins/Jcrop/demos/demo_files/flowers.jpg |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: trunk/extensions/MetavidWiki/skins/mv_embed/jquery/plugins/Jcrop/demos/demo_files/flowers.jpg |
___________________________________________________________________ |
Added: svn:mime-type |
1 | 1 | + application/octet-stream |
Added: svn:executable |
2 | 2 | + * |
Index: trunk/extensions/MetavidWiki/skins/mv_embed/jquery/plugins/Jcrop/demos/demo_files/demos.css |
— | — | @@ -0,0 +1,47 @@ |
| 2 | +body |
| 3 | +{ |
| 4 | + margin: 0; |
| 5 | + padding: 0; |
| 6 | + background: #eee; |
| 7 | +} |
| 8 | + |
| 9 | +.jcropper-holder { border: 1px black solid; } |
| 10 | + |
| 11 | +#outer { |
| 12 | + text-align: center; |
| 13 | +} |
| 14 | + |
| 15 | +.jcExample |
| 16 | +{ |
| 17 | + text-align: left; |
| 18 | + background: white; |
| 19 | + width: 700px; |
| 20 | + font-size: 80%; |
| 21 | + margin: 3.5em auto 2em auto; |
| 22 | + *margin: 3.5em 10% 2em 10%; |
| 23 | + border: 1px black solid; |
| 24 | + padding: 1em 2em 2em; |
| 25 | +} |
| 26 | + |
| 27 | +.jcExample .article |
| 28 | +{ |
| 29 | + width: 565px; |
| 30 | +} |
| 31 | + |
| 32 | +form |
| 33 | +{ |
| 34 | + margin: 1.5em 0; |
| 35 | +} |
| 36 | + |
| 37 | +form label |
| 38 | +{ |
| 39 | + margin-right: 1em; |
| 40 | + font-weight: bold; |
| 41 | + color: #990000; |
| 42 | +} |
| 43 | + |
| 44 | +.jcExample p |
| 45 | +{ |
| 46 | + font-family: Verdana, Helvetica, Arial, sans-serif; |
| 47 | + font-size: 90%; |
| 48 | +} |
Index: trunk/extensions/MetavidWiki/skins/mv_embed/jquery/plugins/Jcrop/demos/tutorial1.html |
— | — | @@ -0,0 +1,43 @@ |
| 2 | +<html> |
| 3 | + <head> |
| 4 | + |
| 5 | + <script src="../js/jquery.pack.js"></script> |
| 6 | + <script src="../js/jquery.Jcrop.pack.js"></script> |
| 7 | + <link rel="stylesheet" href="../css/jquery.Jcrop.css" type="text/css" /> |
| 8 | + <link rel="stylesheet" href="demo_files/demos.css" type="text/css" /> |
| 9 | + |
| 10 | + <script language="Javascript"> |
| 11 | + |
| 12 | + jQuery(function(){ |
| 13 | + jQuery('#cropbox').Jcrop(); |
| 14 | + }); |
| 15 | + |
| 16 | + </script> |
| 17 | + |
| 18 | + </head> |
| 19 | + |
| 20 | + <body> |
| 21 | + <div id="outer"> |
| 22 | + <div class="jcExample"> |
| 23 | + <div class="article"> |
| 24 | + |
| 25 | + <h1>Jcrop - Hello World</h1> |
| 26 | + <img src="demo_files/flowers.jpg" id="cropbox" /> |
| 27 | + |
| 28 | + <p> |
| 29 | + <b>This example is provided as a demo of the default behavior of Jcrop.</b> |
| 30 | + Since no event handlers have been attached it only performs |
| 31 | + the cropping behavior. |
| 32 | + </p> |
| 33 | + |
| 34 | + <div id="dl_links"> |
| 35 | + <a href="http://deepliquid.com/content/Jcrop.html">Jcrop Home</a> | |
| 36 | + <a href="http://deepliquid.com/content/Jcrop_Manual.html">Manual (Docs)</a> |
| 37 | + </div> |
| 38 | + |
| 39 | + </div> |
| 40 | + </div> |
| 41 | + </div> |
| 42 | + </body> |
| 43 | +</html> |
| 44 | + |
Index: trunk/extensions/MetavidWiki/skins/mv_embed/jquery/plugins/Jcrop/demos/tutorial2.html |
— | — | @@ -0,0 +1,81 @@ |
| 2 | +<html> |
| 3 | + <head> |
| 4 | + |
| 5 | + <script src="../js/jquery.pack.js"></script> |
| 6 | + <script src="../js/jquery.Jcrop.pack.js"></script> |
| 7 | + <link rel="stylesheet" href="../css/jquery.Jcrop.css" type="text/css" /> |
| 8 | + <link rel="stylesheet" href="demo_files/demos.css" type="text/css" /> |
| 9 | + |
| 10 | + <script language="Javascript"> |
| 11 | + |
| 12 | + // Remember to invoke within jQuery(window).load(...) |
| 13 | + // If you don't, Jcrop may not initialize properly |
| 14 | + jQuery(document).ready(function(){ |
| 15 | + |
| 16 | + jQuery('#cropbox').Jcrop({ |
| 17 | + onChange: showCoords, |
| 18 | + onSelect: showCoords |
| 19 | + }); |
| 20 | + |
| 21 | + }); |
| 22 | + |
| 23 | + // Our simple event handler, called from onChange and onSelect |
| 24 | + // event handlers, as per the Jcrop invocation above |
| 25 | + function showCoords(c) |
| 26 | + { |
| 27 | + jQuery('#x').val(c.x); |
| 28 | + jQuery('#y').val(c.y); |
| 29 | + jQuery('#x2').val(c.x2); |
| 30 | + jQuery('#y2').val(c.y2); |
| 31 | + jQuery('#w').val(c.w); |
| 32 | + jQuery('#h').val(c.h); |
| 33 | + }; |
| 34 | + |
| 35 | + </script> |
| 36 | + |
| 37 | + </head> |
| 38 | + |
| 39 | + <body> |
| 40 | + |
| 41 | + <div id="outer"> |
| 42 | + <div class="jcExample"> |
| 43 | + <div class="article"> |
| 44 | + |
| 45 | + <h1>Jcrop - Event Handlers</h1> |
| 46 | + |
| 47 | + <!-- This is the image we're attaching Jcrop to --> |
| 48 | + <img src="demo_files/flowers.jpg" id="cropbox" /> |
| 49 | + |
| 50 | + <!-- This is the form that our event handler fills --> |
| 51 | + <form onsubmit="return false;"> |
| 52 | + <label>X1 <input type="text" size="4" id="x" name="x" /></label> |
| 53 | + <label>Y1 <input type="text" size="4" id="y" name="y" /></label> |
| 54 | + <label>X2 <input type="text" size="4" id="x2" name="x2" /></label> |
| 55 | + <label>Y2 <input type="text" size="4" id="y2" name="y2" /></label> |
| 56 | + <label>W <input type="text" size="4" id="w" name="w" /></label> |
| 57 | + <label>H <input type="text" size="4" id="h" name="h" /></label> |
| 58 | + </form> |
| 59 | + |
| 60 | + <p> |
| 61 | + <b>An example with a basic event handler.</b> Here we've tied |
| 62 | + several form values together with a simple event handler invocation. |
| 63 | + The result is that the form values are updated in real-time as |
| 64 | + the selection is changed, thanks to Jcrop's <em>onChange</em> event handler. |
| 65 | + </p> |
| 66 | + |
| 67 | + <p> |
| 68 | + That's how easily Jcrop can be integrated into a traditional web form! |
| 69 | + </p> |
| 70 | + |
| 71 | + <div id="dl_links"> |
| 72 | + <a href="http://deepliquid.com/content/Jcrop.html">Jcrop Home</a> | |
| 73 | + <a href="http://deepliquid.com/content/Jcrop_Manual.html">Manual (Docs)</a> |
| 74 | + </div> |
| 75 | + |
| 76 | + |
| 77 | + </div> |
| 78 | + </div> |
| 79 | + </div> |
| 80 | + </body> |
| 81 | + |
| 82 | +</html> |
Index: trunk/extensions/MetavidWiki/skins/mv_embed/jquery/plugins/Jcrop/demos/crop.php |
— | — | @@ -0,0 +1,106 @@ |
| 2 | +<?php |
| 3 | + |
| 4 | +/** |
| 5 | + * Jcrop image cropping plugin for jQuery |
| 6 | + * Example cropping script |
| 7 | + * @copyright 2008 Kelly Hallman |
| 8 | + * More info: http://deepliquid.com/content/Jcrop_Implementation_Theory.html |
| 9 | + */ |
| 10 | + |
| 11 | +if ($_SERVER['REQUEST_METHOD'] == 'POST') |
| 12 | +{ |
| 13 | + $targ_w = $targ_h = 150; |
| 14 | + $jpeg_quality = 90; |
| 15 | + |
| 16 | + $src = 'demo_files/flowers.jpg'; |
| 17 | + $img_r = imagecreatefromjpeg($src); |
| 18 | + $dst_r = ImageCreateTrueColor( $targ_w, $targ_h ); |
| 19 | + |
| 20 | + imagecopyresampled($dst_r,$img_r,0,0,$_POST['x'],$_POST['y'], |
| 21 | + $targ_w,$targ_h,$_POST['w'],$_POST['h']); |
| 22 | + |
| 23 | + header('Content-type: image/jpeg'); |
| 24 | + imagejpeg($dst_r,null,$jpeg_quality); |
| 25 | + |
| 26 | + exit; |
| 27 | +} |
| 28 | + |
| 29 | +// If not a POST request, display page below: |
| 30 | + |
| 31 | +?><html> |
| 32 | + <head> |
| 33 | + |
| 34 | + <script src="../js/jquery.pack.js"></script> |
| 35 | + <script src="../js/jquery.Jcrop.pack.js"></script> |
| 36 | + <link rel="stylesheet" href="../css/jquery.Jcrop.css" type="text/css" /> |
| 37 | + <link rel="stylesheet" href="demo_files/demos.css" type="text/css" /> |
| 38 | + |
| 39 | + <script language="Javascript"> |
| 40 | + |
| 41 | + $(function(){ |
| 42 | + |
| 43 | + $('#cropbox').Jcrop({ |
| 44 | + aspectRatio: 1, |
| 45 | + onSelect: updateCoords |
| 46 | + }); |
| 47 | + |
| 48 | + }); |
| 49 | + |
| 50 | + function updateCoords(c) |
| 51 | + { |
| 52 | + $('#x').val(c.x); |
| 53 | + $('#y').val(c.y); |
| 54 | + $('#w').val(c.w); |
| 55 | + $('#h').val(c.h); |
| 56 | + }; |
| 57 | + |
| 58 | + function checkCoords() |
| 59 | + { |
| 60 | + if (parseInt($('#x').val())) return true; |
| 61 | + alert('Please select a crop region then press submit.'); |
| 62 | + return false; |
| 63 | + }; |
| 64 | + |
| 65 | + </script> |
| 66 | + |
| 67 | + </head> |
| 68 | + |
| 69 | + <body> |
| 70 | + |
| 71 | + <div id="outer"> |
| 72 | + <div class="jcExample"> |
| 73 | + <div class="article"> |
| 74 | + |
| 75 | + <h1>Jcrop - Crop Behavior</h1> |
| 76 | + |
| 77 | + <!-- This is the image we're attaching Jcrop to --> |
| 78 | + <img src="demo_files/flowers.jpg" id="cropbox" /> |
| 79 | + |
| 80 | + <!-- This is the form that our event handler fills --> |
| 81 | + <form action="crop.php" method="post" onsubmit="return checkCoords();"> |
| 82 | + <input type="hidden" id="x" name="x" /> |
| 83 | + <input type="hidden" id="y" name="y" /> |
| 84 | + <input type="hidden" id="w" name="w" /> |
| 85 | + <input type="hidden" id="h" name="h" /> |
| 86 | + <input type="submit" value="Crop Image" /> |
| 87 | + </form> |
| 88 | + |
| 89 | + <p> |
| 90 | + <b>An example server-side crop script.</b> Hidden form values |
| 91 | + are set when a selection is made. If you press the <i>Crop Image</i> |
| 92 | + button, the form will be submitted and a 150x150 thumbnail will be |
| 93 | + dumped to the browser. Try it! |
| 94 | + </p> |
| 95 | + |
| 96 | + <div id="dl_links"> |
| 97 | + <a href="http://deepliquid.com/content/Jcrop.html">Jcrop Home</a> | |
| 98 | + <a href="http://deepliquid.com/content/Jcrop_Manual.html">Manual (Docs)</a> |
| 99 | + </div> |
| 100 | + |
| 101 | + |
| 102 | + </div> |
| 103 | + </div> |
| 104 | + </div> |
| 105 | + </body> |
| 106 | + |
| 107 | +</html> |
Index: trunk/extensions/MetavidWiki/skins/mv_embed/jquery/plugins/Jcrop/demos/tutorial3.html |
— | — | @@ -0,0 +1,85 @@ |
| 2 | +<html> |
| 3 | + <head> |
| 4 | + |
| 5 | + <script src="../js/jquery.pack.js"></script> |
| 6 | + <script src="../js/jquery.Jcrop.pack.js"></script> |
| 7 | + <link rel="stylesheet" href="../css/jquery.Jcrop.css" type="text/css" /> |
| 8 | + <link rel="stylesheet" href="demo_files/demos.css" type="text/css" /> |
| 9 | + |
| 10 | + <script language="Javascript"> |
| 11 | + |
| 12 | + // Remember to invoke within jQuery(window).load(...) |
| 13 | + // If you don't, Jcrop may not initialize properly |
| 14 | + jQuery(window).load(function(){ |
| 15 | + |
| 16 | + jQuery('#cropbox').Jcrop({ |
| 17 | + onChange: showPreview, |
| 18 | + onSelect: showPreview, |
| 19 | + aspectRatio: 1 |
| 20 | + }); |
| 21 | + |
| 22 | + }); |
| 23 | + |
| 24 | + // Our simple event handler, called from onChange and onSelect |
| 25 | + // event handlers, as per the Jcrop invocation above |
| 26 | + function showPreview(coords) |
| 27 | + { |
| 28 | + var rx = 100 / coords.w; |
| 29 | + var ry = 100 / coords.h; |
| 30 | + |
| 31 | + jQuery('#preview').css({ |
| 32 | + width: Math.round(rx * 500) + 'px', |
| 33 | + height: Math.round(ry * 370) + 'px', |
| 34 | + marginLeft: '-' + Math.round(rx * coords.x) + 'px', |
| 35 | + marginTop: '-' + Math.round(ry * coords.y) + 'px' |
| 36 | + }); |
| 37 | + } |
| 38 | + |
| 39 | + </script> |
| 40 | + |
| 41 | + </head> |
| 42 | + |
| 43 | + <body> |
| 44 | + |
| 45 | + <div id="outer"> |
| 46 | + <div class="jcExample"> |
| 47 | + <div class="article"> |
| 48 | + |
| 49 | + <h1>Jcrop - Aspect ratio lock w/ preview pane</h1> |
| 50 | + |
| 51 | + <!-- This is the image we're attaching Jcrop to --> |
| 52 | + <table> |
| 53 | + <tr> |
| 54 | + <td> |
| 55 | + <img src="demo_files/flowers.jpg" id="cropbox" /> |
| 56 | + </td> |
| 57 | + <td> |
| 58 | + <div style="width:100px;height:100px;overflow:hidden;"> |
| 59 | + <img src="demo_files/flowers.jpg" id="preview" /> |
| 60 | + </div> |
| 61 | + |
| 62 | + </td> |
| 63 | + </tr> |
| 64 | + </table> |
| 65 | + |
| 66 | + <p> |
| 67 | + <b>An example with aspect ratio locking and preview pane.</b> |
| 68 | + Obviously the most visual demo, the preview pane is accomplished |
| 69 | + entirely outside of Jcrop with a simple jQuery-flavored callback. |
| 70 | + This type of interface could be useful for creating a thumbnail |
| 71 | + or avatar. The onChange event handler is used to update the |
| 72 | + view in the preview pane. |
| 73 | + </p> |
| 74 | + |
| 75 | + <div id="dl_links"> |
| 76 | + <a href="http://deepliquid.com/content/Jcrop.html">Jcrop Home</a> | |
| 77 | + <a href="http://deepliquid.com/content/Jcrop_Manual.html">Manual (Docs)</a> |
| 78 | + </div> |
| 79 | + |
| 80 | + |
| 81 | + </div> |
| 82 | + </div> |
| 83 | + </div> |
| 84 | + </body> |
| 85 | + |
| 86 | +</html> |
Index: trunk/extensions/MetavidWiki/skins/mv_embed/jquery/plugins/Jcrop/demos/tutorial4.html |
— | — | @@ -0,0 +1,94 @@ |
| 2 | +<html> |
| 3 | + <head> |
| 4 | + |
| 5 | + <script src="../js/jquery.pack.js"></script> |
| 6 | + <script src="../js/jquery.Jcrop.pack.js"></script> |
| 7 | + <link rel="stylesheet" href="../css/jquery.Jcrop.css" type="text/css" /> |
| 8 | + <link rel="stylesheet" href="demo_files/demos.css" type="text/css" /> |
| 9 | + |
| 10 | + <script language="Javascript"> |
| 11 | + |
| 12 | + $(window).load(function(){ |
| 13 | + |
| 14 | + var api = $.Jcrop('#cropbox',{ |
| 15 | + setSelect: [ 100, 100, 200, 200 ] |
| 16 | + }); |
| 17 | + var i, ac; |
| 18 | + |
| 19 | + // A handler to kill the action |
| 20 | + function nothing(e) |
| 21 | + { |
| 22 | + e.stopPropagation(); |
| 23 | + e.preventDefault(); |
| 24 | + return false; |
| 25 | + }; |
| 26 | + |
| 27 | + // Returns event handler for animation callback |
| 28 | + function anim_handler(ac) |
| 29 | + { |
| 30 | + return function(e) { |
| 31 | + api.animateTo(ac); |
| 32 | + return nothing(e); |
| 33 | + }; |
| 34 | + }; |
| 35 | + |
| 36 | + // Setup some coordinates for animation |
| 37 | + var ac = |
| 38 | + { |
| 39 | + anim1: [50,50,450,320], |
| 40 | + anim2: [74,81,218,228], |
| 41 | + anim3: [8,8,32,360], |
| 42 | + anim4: [316,150,470,230], |
| 43 | + anim5: [80,160,500,190] |
| 44 | + }; |
| 45 | + |
| 46 | + // Attach respective event handlers |
| 47 | + for(i in ac) jQuery('#'+i).click(anim_handler(ac[i])); |
| 48 | + |
| 49 | + // Attach another one manually, to demonstrate "set" w/o animation |
| 50 | + jQuery('#setsel').click(function(e) { |
| 51 | + api.setSelect( [ 200, 200, 300, 300 ] ); |
| 52 | + return nothing(e); |
| 53 | + }); |
| 54 | + |
| 55 | + }); |
| 56 | + |
| 57 | + </script> |
| 58 | + |
| 59 | + </head> |
| 60 | + |
| 61 | + <body> |
| 62 | + <div id="outer"> |
| 63 | + <div class="jcExample"> |
| 64 | + <div class="article"> |
| 65 | + |
| 66 | + <h1>Jcrop - API Demo</h1> |
| 67 | + <img src="demo_files/flowers.jpg" id="cropbox" /> |
| 68 | + |
| 69 | + <div style="margin: 20px 0;"> |
| 70 | + <button id="anim1">A1</button> |
| 71 | + <button id="anim2">A2</button> |
| 72 | + <button id="anim3">A3</button> |
| 73 | + <button id="anim4">A4</button> |
| 74 | + <button id="anim5">A5</button> |
| 75 | + <button id="setsel">Set</button> |
| 76 | + </div> |
| 77 | + |
| 78 | + <p> |
| 79 | + <b>API feature demonstration.</b> |
| 80 | + Press the buttons above to animate different selections. |
| 81 | + This demonstrates some of the upcoming API functionality, |
| 82 | + but actual implementation is currently undocumented (read the source). |
| 83 | + </p> |
| 84 | + |
| 85 | + <div id="dl_links"> |
| 86 | + <a href="http://deepliquid.com/content/Jcrop.html">Jcrop Home</a> | |
| 87 | + <a href="http://deepliquid.com/content/Jcrop_Manual.html">Manual (Docs)</a> |
| 88 | + </div> |
| 89 | + |
| 90 | + </div> |
| 91 | + </div> |
| 92 | + </div> |
| 93 | + </body> |
| 94 | +</html> |
| 95 | + |
Index: trunk/extensions/MetavidWiki/skins/mv_embed/jquery/plugins/Jcrop/css/Jcrop.gif |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: trunk/extensions/MetavidWiki/skins/mv_embed/jquery/plugins/Jcrop/css/Jcrop.gif |
___________________________________________________________________ |
Added: svn:mime-type |
1 | 96 | + application/octet-stream |
Index: trunk/extensions/MetavidWiki/skins/mv_embed/jquery/plugins/Jcrop/css/jquery.Jcrop.css |
— | — | @@ -0,0 +1,45 @@ |
| 2 | +/* Fixes issue here http://code.google.com/p/jcrop/issues/detail?id=1 */ |
| 3 | +.jcrop-holder |
| 4 | +{ |
| 5 | + text-align: left; |
| 6 | +} |
| 7 | + |
| 8 | +.jcrop-vline, .jcrop-hline |
| 9 | +{ |
| 10 | + font-size: 0; |
| 11 | + position: absolute; |
| 12 | + background: white url('Jcrop.gif') top left repeat; |
| 13 | + /* |
| 14 | + opacity: .5; |
| 15 | + *filter:alpha(opacity=50); |
| 16 | + */ |
| 17 | +} |
| 18 | +.jcrop-vline { height: 100%; width: 1px !important; } |
| 19 | +.jcrop-hline { width: 100%; height: 1px !important; } |
| 20 | +.jcrop-handle { |
| 21 | + font-size: 1px; |
| 22 | + width: 7px !important; |
| 23 | + height: 7px !important; |
| 24 | + border: 1px #eee solid; |
| 25 | + background-color: #333; |
| 26 | + *width: 9px; |
| 27 | + *height: 9px; |
| 28 | +} |
| 29 | + |
| 30 | +.jcrop-tracker { |
| 31 | + *background-color: gray; |
| 32 | + width: 100%; height: 100%; |
| 33 | +} |
| 34 | + |
| 35 | +.custom .jcrop-vline, |
| 36 | +.custom .jcrop-hline |
| 37 | +{ |
| 38 | + background: yellow; |
| 39 | +} |
| 40 | +.custom .jcrop-handle |
| 41 | +{ |
| 42 | + border-color: black; |
| 43 | + background-color: #C7BB00; |
| 44 | + -moz-border-radius: 3px; |
| 45 | + -webkit-border-radius: 3px; |
| 46 | +} |
Index: trunk/extensions/MetavidWiki/skins/mv_embed/jquery/plugins/Jcrop/index.html |
— | — | @@ -0,0 +1,64 @@ |
| 2 | +<html> |
| 3 | +<head> |
| 4 | +<title>Jcrop: the jQuery Image Cropping Plugin</title> |
| 5 | +</head> |
| 6 | +<body> |
| 7 | + |
| 8 | +<div style="margin:0;padding:1em 5em;width:40em;"> |
| 9 | +<h1>Jcrop Image Cropping Plugin</h1> |
| 10 | + |
| 11 | +<big> |
| 12 | + <a href="http://deepliquid.com/content/Jcrop.html"><b>Jcrop</b></a> |
| 13 | + is the image cropping plugin for |
| 14 | + <a href="http://jquery.com/">jQuery</a>.<br> |
| 15 | + You've successfully unpacked Jcrop. |
| 16 | +</big> |
| 17 | + |
| 18 | +<h3>Static Demos</h3> |
| 19 | + |
| 20 | +<ul> |
| 21 | + <li><a href="demos/tutorial1.html">Hello World</a> — default behavior</a></li> |
| 22 | + <li><a href="demos/tutorial2.html">Basic Handler</a> — basic form integration</a></li> |
| 23 | + <li><a href="demos/tutorial3.html">Aspect Ratio w/ Preview Pane</a> — nice visual example</a></li> |
| 24 | + <li><a href="demos/tutorial4.html">API Example</a> — animation demo</a></li> |
| 25 | +</ul> |
| 26 | + |
| 27 | +<h3>Live Demo</h3> |
| 28 | + |
| 29 | +<ul> |
| 30 | + <li><a href="demos/crop.php">PHP Cropping Demo</a> — requires PHP/gd support</a></li> |
| 31 | +</ul> |
| 32 | + |
| 33 | +<h3>Jcrop Links</h3> |
| 34 | + |
| 35 | +<ul> |
| 36 | + <li><a href="http://deepliquid.com/content/Jcrop.html">Jcrop Home</a></li> |
| 37 | + <li><a href="http://deepliquid.com/content/Jcrop_Manual.html">Jcrop Manual</a></li> |
| 38 | +</ul> |
| 39 | + |
| 40 | +<hr noshade="noshade" size="1" style="margin-top:2em;" /> |
| 41 | +<small> |
| 42 | + <b>© 2008 Kelly Hallman and DeepLiquid.com</b><br> |
| 43 | + Free software released under |
| 44 | + <a href="http://deepliquid.com/content/Jcrop_License.html">MIT License</a> |
| 45 | +</small> |
| 46 | +</div> |
| 47 | + |
| 48 | + |
| 49 | + |
| 50 | + |
| 51 | +<!-- Below here for internal analysis {{{ --> |
| 52 | + |
| 53 | +<script type="text/javascript"> |
| 54 | +var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); |
| 55 | +document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); |
| 56 | +</script> |
| 57 | +<script type="text/javascript"> |
| 58 | +var pageTracker = _gat._getTracker("UA-5176876-1"); |
| 59 | +pageTracker._trackPageview(); |
| 60 | +</script> |
| 61 | + |
| 62 | +<!-- }}} --> |
| 63 | + |
| 64 | +</body> |
| 65 | +</html> |
Index: trunk/extensions/MetavidWiki/skins/mv_embed/jquery/plugins/Jcrop/js/jquery.Jcrop.pack.js |
— | — | @@ -0,0 +1,8 @@ |
| 2 | +/** |
| 3 | + * Jcrop v.0.9.5 (packed) |
| 4 | + * (c) 2008 Kelly Hallman and DeepLiquid.com |
| 5 | + * More information: http://deepliquid.com/content/Jcrop.html |
| 6 | + * Released under MIT License - this header must remain with code |
| 7 | + */ |
| 8 | + |
| 9 | +eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('$.1n=7(G,F){d G=G,F=F;g(1p(G)!==\'2d\')G=$(G)[0];g(1p(F)!==\'2d\')F={};g(!(\'2x\'1a F))F.2x=$.3d.3e?K:M;g(!(\'2c\'1a F))F.2c=$.3d.3e?K:M;d 4f={2x:K,3W:\'4C\',1f:4D,3T:\'4Y\',3x:.6,3O:.4,3P:.5,53:5,3N:9,3D:5,51:14,25:0,2c:M,3I:M,3B:M,30:M,3A:M,49:0,4p:0,4k:8,3V:20,3X:3,2f:K,3n:[0,0],2z:[0,0],2O:[0,0],2D:7(){},2G:7(){}};d j=4f;21(F);d $I=$(G).B({16:\'1b\'});47($I,j.49,j.4p);d S=$I.W(),L=$I.U(),$12=$(\'<12 />\').W(S).U(L).1f(1L(\'4F\')).B({16:\'4H\',4B:j.3T});g(j.1f)$12.1f(j.1f);$I.54($12);d $34=$(\'<I />\').3Y(\'2N\',$I.3Y(\'2N\')).B(\'16\',\'1b\').W(S).U(L);d $2C=$(\'<12 />\').W(1t(V)).U(1t(V)).B({1l:59,16:\'1b\',4o:\'4g\'}).1P($34);d $2g=$(\'<12 />\').W(1t(V)).U(1t(V)).B({1l:5b});d $28=$(\'<12 />\').B({16:\'1b\',1l:55}).3U($I).1P($2C,$2g);d 23=j.4k;d $1S=$(\'<12 />\').1f(1L(\'3v\')).W(S+(23*2)).U(L+(23*2)).B({16:\'1b\',R:D(-23),P:D(-23),1l:3R,1z:0}).3q(48);d 1I,1Q;d 2u=2Q(G),1q,1B,3i,58,3h,1O;g(\'36\'1a j){1I=j.36[0]/S;1Q=j.36[1]/L}d E=7(){d A=0,u=0,q=0,m=0,Z,Y;7 1A(z){d z=2T(z);q=A=z[0];m=u=z[1]};7 1y(z){d z=2T(z);Z=z[0]-q;Y=z[1]-m;q=z[0];m=z[1]};7 3f(){k[Z,Y]};7 2b(2y){d Z=2y[0],Y=2y[1];g(0>A+Z)Z-=Z+A;g(0>u+Y)Y-=Y+u;g(L<m+Y)Y+=L-(m+Y);g(S<q+Z)Z+=S-(q+Z);A+=Z;q+=Z;u+=Y;m+=Y};7 2K(T){d c=Q();1E(T){C\'1s\':k[c.q,c.y];C\'11\':k[c.x,c.y];C\'2e\':k[c.q,c.m];C\'1M\':k[c.x,c.m]}};7 Q(){g(!j.25&&!1B)k 3F();d 1k=j.25?j.25:1B,5c=j.2O,4u=j.2z,1V=q-A,1Z=m-u,3c=N.17(1V),3j=N.17(1Z),3M=3c/3j,15,13;g(3M<1k){13=m;w=3j*1k;15=1V<0?A-w:w+A;g(15<0){15=0;h=N.17((15-A)/1k);13=1Z<0?u-h:h+u}1g g(15>S){15=S;h=N.17((15-A)/1k);13=1Z<0?u-h:h+u}}1g{15=q;h=3c/1k;13=1Z<0?u-h:u+h;g(13<0){13=0;w=N.17((13-u)*1k);15=1V<0?A-w:w+A}1g g(13>L){13=L;w=N.17(13-u)*1k;15=1V<0?A-w:w+A}}k 4E=3g(1F(A,u,15,13))};7 2T(p){g(p[0]<0)p[0]=0;g(p[1]<0)p[1]=0;g(p[0]>S)p[0]=S;g(p[1]>L)p[1]=L;k[p[0],p[1]]};7 1F(A,u,q,m){d 2R=A,3r=q,3o=u,3l=m;g(q<A){2R=q;3r=A}g(m<u){3o=m;3l=u}k[N.1K(2R),N.1K(3o),N.1K(3r),N.1K(3l)]};7 3F(){d 1U=q-A;d 22=m-u;g(2q&&(N.17(1U)>2q))q=(1U>0)?(A+2q):(A-2q);g(2n&&(N.17(22)>2n))m=(22>0)?(u+2n):(u-2n);g(2i&&(N.17(22)<2i))m=(22>0)?(u+2i):(u-2i);g(2m&&(N.17(1U)<2m))q=(1U>0)?(A+2m):(A-2m);g(A<0){q-=A;A-=A}g(u<0){m-=u;u-=u}g(q<0){A-=q;q-=q}g(m<0){u-=m;m-=m}g(q>S){d X=q-S;A-=X;q-=X}g(m>L){d X=m-L;u-=X;m-=X}g(A>S){d X=A-L;m-=X;u-=X}g(u>L){d X=u-L;m-=X;u-=X}k 3g(1F(A,u,q,m))};7 3g(a){k{x:a[0],y:a[1],q:a[2],m:a[3],w:a[2]-a[0],h:a[3]-a[1]}};k{1F:1F,1A:1A,1y:1y,3f:3f,2b:2b,2K:2K,Q:Q}}();d J=7(){d 4v,4z,4y,1R,2U=4x;d 2F={};d H={};d 2E=K;d 1i=j.3D;g(j.30){2F={R:1Y(\'3C\').B(\'R\',$.3d.3e?D(-1):D(0)),3Q:1Y(\'3C\'),P:1Y(\'3z\'),3L:1Y(\'3z\')}}g(j.3A){H.t=1W(\'n\');H.b=1W(\'s\');H.r=1W(\'e\');H.l=1W(\'w\')}j.3B&&2Y([\'n\',\'s\',\'e\',\'w\']);j.3I&&2Y([\'1M\',\'11\',\'1s\',\'2e\']);7 1Y(1u){d 1J=$(\'<12 />\').B({16:\'1b\',1z:j.3O}).1f(1L(1u));$2C.1P(1J);k 1J};7 2W(T,3y){d 1J=$(\'<12 />\').3q(3b(T)).B({3p:T+\'-2A\',16:\'1b\',1l:3y});$2g.1P(1J);k 1J};7 3J(T){k 2W(T,2U++).B({R:D(-1i+1),P:D(-1i+1),1z:j.3P}).1f(1L(\'H\'))};7 1W(T){d s=j.3N,o=1i,h=s,w=s,t=o,l=o;1E(T){C\'n\':C\'s\':w=1t(V);O;C\'e\':C\'w\':h=1t(V);O}k 2W(T,2U++).W(w).U(h).B({R:D(-t+1),P:D(-l+1)})};7 2Y(2J){4U(i 1a 2J)H[2J[i]]=3J(2J[i])};7 31(c){d 3a=N.1K((c.h/2)-1i),35=N.1K((c.w/2)-1i),4V=4W=-1i+1,2a=c.w-1i,1X=c.h-1i,x,y;\'e\'1a H&&H.e.B({R:D(3a),P:D(2a)})&&H.w.B({R:D(3a)})&&H.s.B({R:D(1X),P:D(35)})&&H.n.B({P:D(35)});\'1s\'1a H&&H.1s.B({P:D(2a)})&&H.2e.B({R:D(1X),P:D(2a)})&&H.1M.B({R:D(1X)});\'b\'1a H&&H.b.B({R:D(1X)})&&H.r.B({P:D(2a)})};7 3K(x,y){$34.B({R:D(-y),P:D(-x)});$28.B({R:D(y),P:D(x)})};7 2A(w,h){$28.W(w).U(h)};7 3s(){d p=E.Q();E.1A([p.x,p.y]);E.1y([p.q,p.m])};7 2I(){g(1R)k 1e()};7 1e(){d c=E.Q();2A(c.w,c.h);3K(c.x,c.y);j.30&&2F[\'3L\'].B({P:D(c.w-1)})&&2F[\'3Q\'].B({R:D(c.h-1)});2E&&31(c);1R||1w();j.2D(2H(c))};7 1w(){$28.1w();$I.B(\'1z\',j.3x);1R=M};7 1r(){1o();$28.1v();$I.B(\'1z\',1);1R=K};7 1v(){1r();$I.B(\'1z\',1);1R=K};7 2t(){2E=M;31(E.Q());$2g.1w()};7 1o(){2E=K;$2g.1v()};7 2o(v){(3h=v)?1o():2t()};7 1h(){d c=E.Q();2o(K);3s()};1o();$2C.1P($(\'<12 />\').1f(1L(\'3v\')).3q(3b(\'1N\')).B({3p:\'1N\',16:\'1b\',1l:4M,1z:0}));k{2I:2I,1e:1e,1r:1r,1w:1w,1v:1v,2t:2t,1o:1o,2o:2o,1h:1h}}();d 1j=7(){d 2w=7(){},2v=7(){},2L=j.2x;g(!2L){$1S.3k(2B).2S(26).4N(26)}7 4j(){g(2L){$(3t).3k(2B).2S(26)}$1S.B({1l:4G})}7 4i(){g(2L){$(3t).3H(\'3k\',2B).3H(\'2S\',26)}$1S.B({1l:3R})}7 2B(e){2w(2r(e))};7 26(e){e.2j();e.2k();g(1q){1q=K;2v(2r(e));j.2G(2H(E.Q()));4i();2w=7(){};2v=7(){}}k K};7 1G(1N,1h){1q=M;2w=1N;2v=1h;4j();k K};7 1x(t){$1S.B(\'3p\',t)};$I.4s($1S);k{1G:1G,1x:1x}}();d 33=7(){d $24=$(\'<4w 1u="4L" />\').B({16:\'1b\',P:\'-4O\'}).57(43).56(2f).5a(41),$3S=$(\'<12 />\').B({16:\'1b\',4o:\'4g\'}).1P($24);7 2l(){g(j.2c){$24.1w();$24.4Z()}};7 41(e){$24.1v()};7 2f(e){g(!j.2f)k;d 42=1O,1C;1O=e.4Q?M:K;g(42!=1O){g(1O&&1q){1C=E.Q();1B=1C.w/1C.h}1g 1B=0;J.1e()}e.2k();e.2j();k K};7 29(e,x,y){E.2b([x,y]);J.2I();e.2j();e.2k()};7 43(e){g(e.4T)k M;2f(e);d 2h=1O?10:1;1E(e.5d){C 37:29(e,-2h,0);O;C 39:29(e,2h,0);O;C 38:29(e,0,-2h);O;C 40:29(e,0,2h);O;C 27:J.1r();O;C 9:k M}k K};g(j.2c)$3S.3U($I);k{2l:2l}}();7 D(n){k\'\'+1m(n)+\'D\'};7 1t(n){k\'\'+1m(n)+\'%\'};7 1L(44){k j.3W+\'-\'+44};7 2Q(G){d z=$(G).2y();k[z.P,z.R]};7 2r(e){k[(e.4q-2u[0]),(e.4r-2u[1])]};7 46(1u){g(1u!=3i){1j.1x(1u);3i=1u}};7 4a(19,z){2u=2Q(G);1j.1x(19==\'1N\'?19:19+\'-2A\');g(19==\'1N\')k 1j.1G(4e(z),2P);d 1C=E.Q();E.1A(E.2K(4b(19)));1j.1G(45(19,1C),2P)};7 45(19,f){k 7(z){g(!j.25&&!1B)1E(19){C\'e\':z[1]=f.m;O;C\'w\':z[1]=f.m;O;C\'n\':z[0]=f.q;O;C\'s\':z[0]=f.q;O}1g 1E(19){C\'e\':z[1]=f.y+1;O;C\'w\':z[1]=f.y+1;O;C\'n\':z[0]=f.x+1;O;C\'s\':z[0]=f.x+1;O}E.1y(z);J.1e()}};7 4e(z){d 2M=z;33.2l();k 7(z){E.2b([z[0]-2M[0],z[1]-2M[1]]);2M=z;J.1e()}};7 4b(T){1E(T){C\'n\':k\'1M\';C\'s\':k\'11\';C\'e\':k\'11\';C\'w\':k\'1s\';C\'1s\':k\'1M\';C\'11\':k\'2e\';C\'2e\':k\'11\';C\'1M\':k\'1s\'}};7 3b(T){k 7(e){1q=M;4a(T,2r(e));e.2k();e.2j();k K}};7 47($G,w,h){d 11=$G.W(),1H=$G.U();g((11>w)&&w>0){11=w;1H=(w/$G.W())*$G.U()}g((1H>h)&&h>0){1H=h;11=(h/$G.U())*$G.W()}1I=$G.W()/11;1Q=$G.U()/1H;$G.W(11).U(1H)};7 2H(c){k{x:1m(c.x*1I),y:1m(c.y*1Q),q:1m(c.q*1I),m:1m(c.m*1Q),w:1m(c.w*1I),h:1m(c.h*1Q)}};7 2P(z){d c=E.Q();g(c.w>j.3n[0]&&c.h>j.3n[1]){J.2t();J.1h()}1g{J.1r()}1j.1x(\'2X\')};7 48(e){1q=M;2u=2Q(G);J.1r();J.1o();46(\'2X\');E.1A(2r(e));1j.1G(4c,2P);33.2l();e.2k();e.2j();k K};7 4c(z){E.1y(z);J.1e()};7 2Z(a){d A=a[0],u=a[1],q=a[2],m=a[3];g(3h)k;d 2s=E.1F(A,u,q,m);d c=E.Q();d 18=2p=[c.x,c.y,c.q,c.m];d 3w=j.3V;d x=18[0];d y=18[1];d q=18[2];d m=18[3];d 3Z=2s[0]-2p[0];d 4m=2s[1]-2p[1];d 4n=2s[2]-2p[2];d 4l=2s[3]-2p[3];d 1c=0;d 4h=j.3X;J.2o(M);d 3u=7(){k 7(){1c+=(V-1c)/4h;18[0]=x+((1c/V)*3Z);18[1]=y+((1c/V)*4m);18[2]=q+((1c/V)*4n);18[3]=m+((1c/V)*4l);g(1c<V)32();1g J.1h();g(1c>=4K.8)1c=V;1d(18)}}();7 32(){4I.4t(3u,3w)};32()};7 1d(l){E.1A([l[0],l[1]]);E.1y([l[2],l[3]]);J.1e()};7 21(F){g(1p(F)!=\'2d\')F={};j=$.4X(j,F);g(1p(j.2D)!==\'7\')j.2D=7(){};g(1p(j.2G)!==\'7\')j.2G=7(){}};7 3m(){k 2H(E.Q())};7 2V(){k E.Q()};7 3E(F){21(F);g(\'1d\'1a F){1d(F.1d);J.1h()}};g(1p(F)!=\'2d\')F={};g(\'1d\'1a F){1d(F.1d);J.1h()}d 2q=j.2z[0]||0;d 2n=j.2z[1]||0;d 2m=j.2O[0]||0;d 2i=j.2O[1]||0;1j.1x(\'2X\');k{2Z:2Z,1d:1d,21:3E,3m:3m,2V:2V}};$.5e.1n=7(j){7 3G(1D){d 4d=j.4R||1D.2N;d I=4P 4S();d 1D=1D;I.50=7(){$(1D).1v().4A(I);1D.1n=$.1n(I,j)};I.2N=4d};g(1p(j)!==\'2d\')j={};1T.4J(7(){g(\'1n\'1a 1T){g(j==\'52\')k 1T.1n;1g 1T.1n.21(j)}1g 3G(1T)});k 1T};',62,325,'|||||||function||||||var|||if|||options|return||y2||||x2||||y1|||||pos|x1|css|case|px|Coords|opt|obj|handle|img|Selection|false|boundy|true|Math|break|left|getFixed|top|boundx|ord|height|100|width|delta|oy|ox||nw|div|yy||xx|position|abs|animat|mode|in|absolute|pcent|setSelect|update|addClass|else|done|hhs|Tracker|aspect|zIndex|parseInt|Jcrop|disableHandles|typeof|btndown|release|ne|pct|type|hide|show|setCursor|setCurrent|opacity|setPressed|aspectLock|fc|from|switch|flipCoords|activateHandlers|nh|xscale|jq|round|cssClass|sw|move|shift_down|append|yscale|awake|trk|this|xsize|rw|insertDragbar|south|insertBorder|rh||setOptions|ysize|bound|keymgr|aspectRatio|trackUp||sel|doNudge|east|moveOffset|keySupport|object|se|watchShift|hdl_holder|nudge|ymin|preventDefault|stopPropagation|watchKeys|xmin|ylimit|animMode|initcr|xlimit|mouseAbs|animto|enableHandles|docOffset|onDone|onMove|trackDocument|offset|maxSize|resize|trackMove|img_holder|onChange|seehandles|borders|onSelect|unscale|updateVisible|li|getCorner|trackDoc|lloc|src|minSize|doneSelect|getPos|xa|mouseup|rebound|hdep|tellScaled|dragDiv|crosshair|createHandles|animateTo|drawBorders|moveHandles|animateStart|KeyManager|img2|midhoriz|trueSize||||midvert|createDragger|rwa|browser|msie|getOffset|makeObj|animating|lastcurs|rha|mousemove|yb|tellSelect|minSelect|ya|cursor|mousedown|xb|refresh|document|animator|tracker|interv|bgOpacity|zi|vline|dragEdges|sideHandles|hline|handleOffset|setOptionsNew|getRect|attachWhenDone|unbind|cornerHandles|insertHandle|moveto|right|real_ratio|handleSize|borderOpacity|handleOpacity|bottom|290|keywrap|bgColor|insertBefore|animationDelay|baseClass|swingSpeed|attr|ix1||onBlur|init_shift|parseKey|cl|dragmodeHandler|myCursor|presize|newSelection|boxWidth|startDragMode|oppLockCorner|selectDrag|loadsrc|createMover|defaults|hidden|velocity|toBack|toFront|boundary|iy2|iy1|ix2|overflow|boxHeight|pageX|pageY|before|setTimeout|max|start|input|370|dragmode|end|after|backgroundColor|jcrop|null|last|holder|450|relative|window|each|99|radio|360|mouseout|30px|new|shiftKey|useImg|Image|ctrlKey|for|north|west|extend|black|focus|onload|edgeMargin|api|handlePad|wrap|300|keyup|keydown|dimmed|310|blur|320|min|keyCode|fn'.split('|'),0,{})) |
Index: trunk/extensions/MetavidWiki/skins/mv_embed/jquery/plugins/Jcrop/js/jquery.Jcrop.js |
— | — | @@ -0,0 +1,1107 @@ |
| 2 | +/** |
| 3 | + * jquery.Jcrop.js v0.9.5 |
| 4 | + * jQuery Image Cropping Plugin |
| 5 | + * @author Kelly Hallman <khallman@wrack.org> |
| 6 | + * Copyright (c) 2008 Kelly Hallman - released under MIT License {{{ |
| 7 | + * |
| 8 | + * Permission is hereby granted, free of charge, to any person |
| 9 | + * obtaining a copy of this software and associated documentation |
| 10 | + * files (the "Software"), to deal in the Software without |
| 11 | + * restriction, including without limitation the rights to use, |
| 12 | + * copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 13 | + * copies of the Software, and to permit persons to whom the |
| 14 | + * Software is furnished to do so, subject to the following |
| 15 | + * conditions: |
| 16 | + |
| 17 | + * The above copyright notice and this permission notice shall be |
| 18 | + * included in all copies or substantial portions of the Software. |
| 19 | + |
| 20 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 21 | + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES |
| 22 | + * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 23 | + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT |
| 24 | + * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, |
| 25 | + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 26 | + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
| 27 | + * OTHER DEALINGS IN THE SOFTWARE. |
| 28 | + |
| 29 | + * }}} |
| 30 | + */ |
| 31 | +(function($){ |
| 32 | + |
| 33 | +$.Jcrop = function(obj,opt) |
| 34 | +{ |
| 35 | + // Initialization {{{ |
| 36 | + |
| 37 | + // Sanitize some options {{{ |
| 38 | + var obj = obj, opt = opt; |
| 39 | + |
| 40 | + if (typeof(obj) !== 'object') obj = $(obj)[0]; |
| 41 | + if (typeof(opt) !== 'object') opt = { }; |
| 42 | + |
| 43 | + if (!('trackDocument' in opt)) |
| 44 | + opt.trackDocument = $.browser.msie ? false : true; |
| 45 | + |
| 46 | + if (!('keySupport' in opt)) |
| 47 | + opt.keySupport = $.browser.msie ? false : true; |
| 48 | + |
| 49 | + // }}} |
| 50 | + // Extend the default options {{{ |
| 51 | + var defaults = { |
| 52 | + |
| 53 | + // Basic Settings |
| 54 | + trackDocument: false, |
| 55 | + baseClass: 'jcrop', |
| 56 | + addClass: null, |
| 57 | + |
| 58 | + // Styling Options |
| 59 | + bgColor: 'black', |
| 60 | + bgOpacity: .6, |
| 61 | + borderOpacity: .4, |
| 62 | + handleOpacity: .5, |
| 63 | + |
| 64 | + handlePad: 5, |
| 65 | + handleSize: 9, |
| 66 | + handleOffset: 5, |
| 67 | + edgeMargin: 14, |
| 68 | + |
| 69 | + aspectRatio: 0, |
| 70 | + keySupport: true, |
| 71 | + cornerHandles: true, |
| 72 | + sideHandles: true, |
| 73 | + drawBorders: true, |
| 74 | + dragEdges: true, |
| 75 | + |
| 76 | + boxWidth: 0, |
| 77 | + boxHeight: 0, |
| 78 | + |
| 79 | + boundary: 8, |
| 80 | + animationDelay: 20, |
| 81 | + swingSpeed: 3, |
| 82 | + |
| 83 | + watchShift: false, |
| 84 | + minSelect: [ 0, 0 ], |
| 85 | + maxSize: [ 0, 0 ], |
| 86 | + minSize: [ 0, 0 ], |
| 87 | + |
| 88 | + // Callbacks / Event Handlers |
| 89 | + onChange: function() { }, |
| 90 | + onSelect: function() { } |
| 91 | + |
| 92 | + }; |
| 93 | + var options = defaults; |
| 94 | + setOptions(opt); |
| 95 | + |
| 96 | + |
| 97 | + // }}} |
| 98 | + // Initialize some jQuery objects {{{ |
| 99 | + |
| 100 | + var scrollParent = $(obj).parent(); |
| 101 | + js_log('Initialize: current parent offset: ' + scrollParent.scrollTop() ); |
| 102 | + |
| 103 | + var $img = $(obj).css({ position: 'absolute' }); |
| 104 | + |
| 105 | + presize($img,options.boxWidth,options.boxHeight); |
| 106 | + |
| 107 | + var boundx = $img.width(), |
| 108 | + boundy = $img.height(), |
| 109 | + |
| 110 | + $div = $('<div />') |
| 111 | + .width(boundx).height(boundy) |
| 112 | + .addClass(cssClass('holder')) |
| 113 | + .css({ |
| 114 | + position: 'relative', |
| 115 | + //overflow: 'hidden', |
| 116 | + backgroundColor: options.bgColor |
| 117 | + }) |
| 118 | + ; |
| 119 | + |
| 120 | + if (options.addClass) $div.addClass(options.addClass); |
| 121 | + $img.wrap($div); |
| 122 | + |
| 123 | + var $img2 = $('<img />')/*{{{*/ |
| 124 | + .attr('src',$img.attr('src')) |
| 125 | + .css('position','absolute') |
| 126 | + .width(boundx).height(boundy) |
| 127 | + ;/*}}}*/ |
| 128 | + var $img_holder = $('<div />')/*{{{*/ |
| 129 | + .width(pct(100)).height(pct(100)) |
| 130 | + .css({ |
| 131 | + zIndex: 310, |
| 132 | + position: 'absolute', |
| 133 | + overflow: 'hidden' |
| 134 | + }) |
| 135 | + .append($img2) |
| 136 | + ;/*}}}*/ |
| 137 | + var $hdl_holder = $('<div />')/*{{{*/ |
| 138 | + .width(pct(100)).height(pct(100)) |
| 139 | + .css({ |
| 140 | + zIndex: 320 |
| 141 | + //position: 'absolute' |
| 142 | + }) |
| 143 | + ;/*}}}*/ |
| 144 | + var $sel = $('<div />')/*{{{*/ |
| 145 | + .css({ |
| 146 | + position: 'absolute', |
| 147 | + zIndex: 300 |
| 148 | + }) |
| 149 | + .insertBefore($img) |
| 150 | + .append($img_holder,$hdl_holder) |
| 151 | + ;/*}}}*/ |
| 152 | + |
| 153 | + js_log('pre Setup trk: current parent offset: ' + scrollParent.scrollTop() ); |
| 154 | + var bound = options.boundary; |
| 155 | + var $trk = $('<div />') |
| 156 | + .addClass(cssClass('tracker')) |
| 157 | + .width(boundx+(bound*2)) |
| 158 | + .height(boundy+(bound*2)) |
| 159 | + .css({ |
| 160 | + position: 'absolute', |
| 161 | + top: px(-bound), |
| 162 | + left: px(-bound), |
| 163 | + zIndex: 290, |
| 164 | + opacity: 0 |
| 165 | + }) |
| 166 | + .mousedown(newSelection) |
| 167 | + ; |
| 168 | + |
| 169 | + /* }}} */ |
| 170 | + // Set more variables {{{ |
| 171 | + |
| 172 | + var xscale, yscale; |
| 173 | + var docOffset = getPos(obj), |
| 174 | + // Internal states |
| 175 | + btndown, aspectLock, lastcurs, dimmed, animating, |
| 176 | + shift_down; |
| 177 | + |
| 178 | + // }}} |
| 179 | + if ('trueSize' in options)/*{{{*/ |
| 180 | + { |
| 181 | + xscale = options.trueSize[0] / boundx; |
| 182 | + yscale = options.trueSize[1] / boundy; |
| 183 | + } |
| 184 | + /*}}}*/ |
| 185 | + |
| 186 | + // }}} |
| 187 | + // Internal Modules {{{ |
| 188 | + |
| 189 | + var Coords = function()/*{{{*/ |
| 190 | + { |
| 191 | + var x1 = 0, y1 = 0, x2 = 0, y2 = 0, ox, oy; |
| 192 | + |
| 193 | + function setPressed(pos)/*{{{*/ |
| 194 | + { |
| 195 | + var pos = rebound(pos); |
| 196 | + x2 = x1 = pos[0]; |
| 197 | + y2 = y1 = pos[1]; |
| 198 | + }; |
| 199 | + /*}}}*/ |
| 200 | + function setCurrent(pos)/*{{{*/ |
| 201 | + { |
| 202 | + var pos = rebound(pos); |
| 203 | + ox = pos[0] - x2; |
| 204 | + oy = pos[1] - y2; |
| 205 | + x2 = pos[0]; |
| 206 | + y2 = pos[1]; |
| 207 | + }; |
| 208 | + /*}}}*/ |
| 209 | + function getOffset()/*{{{*/ |
| 210 | + { |
| 211 | + return [ ox, oy ]; |
| 212 | + }; |
| 213 | + /*}}}*/ |
| 214 | + function moveOffset(offset)/*{{{*/ |
| 215 | + { |
| 216 | + var ox = offset[0], oy = offset[1]; |
| 217 | + |
| 218 | + if (0 > x1 + ox) ox -= ox + x1; |
| 219 | + if (0 > y1 + oy) oy -= oy + y1; |
| 220 | + |
| 221 | + if (boundy < y2 + oy) oy += boundy - (y2 + oy); |
| 222 | + if (boundx < x2 + ox) ox += boundx - (x2 + ox); |
| 223 | + |
| 224 | + x1 += ox; |
| 225 | + x2 += ox; |
| 226 | + y1 += oy; |
| 227 | + y2 += oy; |
| 228 | + }; |
| 229 | + /*}}}*/ |
| 230 | + function getCorner(ord)/*{{{*/ |
| 231 | + { |
| 232 | + var c = getFixed(); |
| 233 | + switch(ord) |
| 234 | + { |
| 235 | + case 'ne': return [ c.x2, c.y ]; |
| 236 | + case 'nw': return [ c.x, c.y ]; |
| 237 | + case 'se': return [ c.x2, c.y2 ]; |
| 238 | + case 'sw': return [ c.x, c.y2 ]; |
| 239 | + } |
| 240 | + }; |
| 241 | + /*}}}*/ |
| 242 | + function getFixed()/*{{{*/ |
| 243 | + { |
| 244 | + if (!options.aspectRatio && !aspectLock) return getRect(); |
| 245 | + |
| 246 | + // This function could use some optimization I think... |
| 247 | + var aspect = options.aspectRatio ? options.aspectRatio : aspectLock, |
| 248 | + min = options.minSize, |
| 249 | + max = options.maxSize, |
| 250 | + rw = x2 - x1, |
| 251 | + rh = y2 - y1, |
| 252 | + rwa = Math.abs(rw), |
| 253 | + rha = Math.abs(rh), |
| 254 | + real_ratio = rwa / rha, |
| 255 | + xx, yy |
| 256 | + ; |
| 257 | + |
| 258 | + if (real_ratio < aspect) |
| 259 | + { |
| 260 | + yy = y2; |
| 261 | + w = rha * aspect; |
| 262 | + xx = rw < 0 ? x1 - w : w + x1; |
| 263 | + |
| 264 | + if (xx < 0) |
| 265 | + { |
| 266 | + xx = 0; |
| 267 | + h = Math.abs((xx - x1) / aspect); |
| 268 | + yy = rh < 0 ? y1 - h: h + y1; |
| 269 | + } |
| 270 | + else if (xx > boundx) |
| 271 | + { |
| 272 | + xx = boundx; |
| 273 | + h = Math.abs((xx - x1) / aspect); |
| 274 | + yy = rh < 0 ? y1 - h : h + y1; |
| 275 | + } |
| 276 | + } |
| 277 | + else |
| 278 | + { |
| 279 | + xx = x2; |
| 280 | + h = rwa / aspect; |
| 281 | + yy = rh < 0 ? y1 - h : y1 + h; |
| 282 | + if (yy < 0) |
| 283 | + { |
| 284 | + yy = 0; |
| 285 | + w = Math.abs((yy - y1) * aspect); |
| 286 | + xx = rw < 0 ? x1 - w : w + x1; |
| 287 | + } |
| 288 | + else if (yy > boundy) |
| 289 | + { |
| 290 | + yy = boundy; |
| 291 | + w = Math.abs(yy - y1) * aspect; |
| 292 | + xx = rw < 0 ? x1 - w : w + x1; |
| 293 | + } |
| 294 | + } |
| 295 | + return last = makeObj(flipCoords(x1,y1,xx,yy)); |
| 296 | + }; |
| 297 | + /*}}}*/ |
| 298 | + function rebound(p)/*{{{*/ |
| 299 | + { |
| 300 | + if (p[0] < 0) p[0] = 0; |
| 301 | + if (p[1] < 0) p[1] = 0; |
| 302 | + |
| 303 | + if (p[0] > boundx) p[0] = boundx; |
| 304 | + if (p[1] > boundy) p[1] = boundy; |
| 305 | + |
| 306 | + return [ p[0], p[1] ]; |
| 307 | + }; |
| 308 | + /*}}}*/ |
| 309 | + function flipCoords(x1,y1,x2,y2)/*{{{*/ |
| 310 | + { |
| 311 | + var xa = x1, xb = x2, ya = y1, yb = y2; |
| 312 | + if (x2 < x1) |
| 313 | + { |
| 314 | + xa = x2; |
| 315 | + xb = x1; |
| 316 | + } |
| 317 | + if (y2 < y1) |
| 318 | + { |
| 319 | + ya = y2; |
| 320 | + yb = y1; |
| 321 | + } |
| 322 | + return [ Math.round(xa), Math.round(ya), Math.round(xb), Math.round(yb) ]; |
| 323 | + }; |
| 324 | + /*}}}*/ |
| 325 | + function getRect()/*{{{*/ |
| 326 | + { |
| 327 | + var xsize = x2 - x1; |
| 328 | + var ysize = y2 - y1; |
| 329 | + |
| 330 | + if (xlimit && (Math.abs(xsize) > xlimit)) |
| 331 | + x2 = (xsize > 0) ? (x1 + xlimit) : (x1 - xlimit); |
| 332 | + if (ylimit && (Math.abs(ysize) > ylimit)) |
| 333 | + y2 = (ysize > 0) ? (y1 + ylimit) : (y1 - ylimit); |
| 334 | + |
| 335 | + if (ymin && (Math.abs(ysize) < ymin)) |
| 336 | + y2 = (ysize > 0) ? (y1 + ymin) : (y1 - ymin); |
| 337 | + if (xmin && (Math.abs(xsize) < xmin)) |
| 338 | + x2 = (xsize > 0) ? (x1 + xmin) : (x1 - xmin); |
| 339 | + |
| 340 | + if (x1 < 0) { x2 -= x1; x1 -= x1; } |
| 341 | + if (y1 < 0) { y2 -= y1; y1 -= y1; } |
| 342 | + if (x2 < 0) { x1 -= x2; x2 -= x2; } |
| 343 | + if (y2 < 0) { y1 -= y2; y2 -= y2; } |
| 344 | + if (x2 > boundx) { var delta = x2 - boundx; x1 -= delta; x2 -= delta; } |
| 345 | + if (y2 > boundy) { var delta = y2 - boundy; y1 -= delta; y2 -= delta; } |
| 346 | + if (x1 > boundx) { var delta = x1 - boundy; y2 -= delta; y1 -= delta; } |
| 347 | + if (y1 > boundy) { var delta = y1 - boundy; y2 -= delta; y1 -= delta; } |
| 348 | + |
| 349 | + return makeObj(flipCoords(x1,y1,x2,y2)); |
| 350 | + }; |
| 351 | + /*}}}*/ |
| 352 | + function makeObj(a)/*{{{*/ |
| 353 | + { |
| 354 | + return { x: a[0], y: a[1], x2: a[2], y2: a[3], |
| 355 | + w: a[2] - a[0], h: a[3] - a[1] }; |
| 356 | + }; |
| 357 | + /*}}}*/ |
| 358 | + |
| 359 | + return { |
| 360 | + flipCoords: flipCoords, |
| 361 | + setPressed: setPressed, |
| 362 | + setCurrent: setCurrent, |
| 363 | + getOffset: getOffset, |
| 364 | + moveOffset: moveOffset, |
| 365 | + getCorner: getCorner, |
| 366 | + getFixed: getFixed |
| 367 | + }; |
| 368 | + }(); |
| 369 | + |
| 370 | + /*}}}*/ |
| 371 | + var Selection = function()/*{{{*/ |
| 372 | + { |
| 373 | + var start, end, dragmode, awake, hdep = 370; |
| 374 | + var borders = { }; |
| 375 | + var handle = { }; |
| 376 | + var seehandles = false; |
| 377 | + var hhs = options.handleOffset; |
| 378 | + |
| 379 | + /* Insert draggable elements {{{*/ |
| 380 | + |
| 381 | + // Insert border divs for outline |
| 382 | + if (options.drawBorders) { |
| 383 | + borders = { |
| 384 | + top: insertBorder('hline') |
| 385 | + .css('top',$.browser.msie?px(-1):px(0)), |
| 386 | + bottom: insertBorder('hline'), |
| 387 | + left: insertBorder('vline'), |
| 388 | + right: insertBorder('vline') |
| 389 | + }; |
| 390 | + } |
| 391 | + |
| 392 | + // Insert handles on edges |
| 393 | + if (options.dragEdges) { |
| 394 | + handle.t = insertDragbar('n'); |
| 395 | + handle.b = insertDragbar('s'); |
| 396 | + handle.r = insertDragbar('e'); |
| 397 | + handle.l = insertDragbar('w'); |
| 398 | + } |
| 399 | + |
| 400 | + // Insert side handles |
| 401 | + options.sideHandles && |
| 402 | + createHandles(['n','s','e','w']); |
| 403 | + |
| 404 | + // Insert corner handles |
| 405 | + options.cornerHandles && |
| 406 | + createHandles(['sw','nw','ne','se']); |
| 407 | + |
| 408 | + /*}}}*/ |
| 409 | + // Private Methods |
| 410 | + function insertBorder(type)/*{{{*/ |
| 411 | + { |
| 412 | + var jq = $('<div />') |
| 413 | + .css({position: 'absolute', opacity: options.borderOpacity }) |
| 414 | + .addClass(cssClass(type)); |
| 415 | + $img_holder.append(jq); |
| 416 | + return jq; |
| 417 | + }; |
| 418 | + /*}}}*/ |
| 419 | + function dragDiv(ord,zi)/*{{{*/ |
| 420 | + { |
| 421 | + var jq = $('<div />') |
| 422 | + .mousedown(createDragger(ord)) |
| 423 | + .css({ |
| 424 | + cursor: ord+'-resize', |
| 425 | + position: 'absolute', |
| 426 | + zIndex: zi |
| 427 | + }) |
| 428 | + ; |
| 429 | + $hdl_holder.append(jq); |
| 430 | + return jq; |
| 431 | + }; |
| 432 | + /*}}}*/ |
| 433 | + function insertHandle(ord)/*{{{*/ |
| 434 | + { |
| 435 | + return dragDiv(ord,hdep++) |
| 436 | + .css({ top: px(-hhs+1), left: px(-hhs+1), opacity: options.handleOpacity }) |
| 437 | + .addClass(cssClass('handle')); |
| 438 | + }; |
| 439 | + /*}}}*/ |
| 440 | + function insertDragbar(ord)/*{{{*/ |
| 441 | + { |
| 442 | + var s = options.handleSize, |
| 443 | + o = hhs, |
| 444 | + h = s, w = s, |
| 445 | + t = o, l = o; |
| 446 | + |
| 447 | + switch(ord) |
| 448 | + { |
| 449 | + case 'n': case 's': w = pct(100); break; |
| 450 | + case 'e': case 'w': h = pct(100); break; |
| 451 | + } |
| 452 | + |
| 453 | + return dragDiv(ord,hdep++).width(w).height(h) |
| 454 | + .css({ top: px(-t+1), left: px(-l+1)}); |
| 455 | + }; |
| 456 | + /*}}}*/ |
| 457 | + function createHandles(li)/*{{{*/ |
| 458 | + { |
| 459 | + for(i in li) handle[li[i]] = insertHandle(li[i]); |
| 460 | + }; |
| 461 | + /*}}}*/ |
| 462 | + function moveHandles(c)/*{{{*/ |
| 463 | + { |
| 464 | + var midvert = Math.round((c.h / 2) - hhs), |
| 465 | + midhoriz = Math.round((c.w / 2) - hhs), |
| 466 | + north = west = -hhs+1, |
| 467 | + east = c.w - hhs, |
| 468 | + south = c.h - hhs, |
| 469 | + x, y; |
| 470 | + |
| 471 | + 'e' in handle && |
| 472 | + handle.e.css({ top: px(midvert), left: px(east) }) && |
| 473 | + handle.w.css({ top: px(midvert) }) && |
| 474 | + handle.s.css({ top: px(south), left: px(midhoriz) }) && |
| 475 | + handle.n.css({ left: px(midhoriz) }); |
| 476 | + |
| 477 | + 'ne' in handle && |
| 478 | + handle.ne.css({ left: px(east) }) && |
| 479 | + handle.se.css({ top: px(south), left: px(east) }) && |
| 480 | + handle.sw.css({ top: px(south) }); |
| 481 | + |
| 482 | + 'b' in handle && |
| 483 | + handle.b.css({ top: px(south) }) && |
| 484 | + handle.r.css({ left: px(east) }); |
| 485 | + }; |
| 486 | + /*}}}*/ |
| 487 | + function moveto(x,y)/*{{{*/ |
| 488 | + { |
| 489 | + $img2.css({ top: px(-y), left: px(-x) }); |
| 490 | + $sel.css({ top: px(y), left: px(x) }); |
| 491 | + }; |
| 492 | + /*}}}*/ |
| 493 | + function resize(w,h)/*{{{*/ |
| 494 | + { |
| 495 | + $sel.width(w).height(h); |
| 496 | + }; |
| 497 | + /*}}}*/ |
| 498 | + function refresh()/*{{{*/ |
| 499 | + { |
| 500 | + var p = Coords.getFixed(); |
| 501 | + Coords.setPressed([p.x,p.y]); |
| 502 | + Coords.setCurrent([p.x2,p.y2]); |
| 503 | + }; |
| 504 | + /*}}}*/ |
| 505 | + |
| 506 | + // Internal Methods |
| 507 | + function updateVisible()/*{{{*/ |
| 508 | + { if (awake) return update(); }; |
| 509 | + /*}}}*/ |
| 510 | + function update()/*{{{*/ |
| 511 | + { |
| 512 | + var c = Coords.getFixed(); |
| 513 | + |
| 514 | + resize(c.w,c.h); |
| 515 | + moveto(c.x,c.y); |
| 516 | + |
| 517 | + options.drawBorders && |
| 518 | + borders['right'].css({ left: px(c.w-1) }) && |
| 519 | + borders['bottom'].css({ top: px(c.h-1) }); |
| 520 | + |
| 521 | + seehandles && moveHandles(c); |
| 522 | + awake || show(); |
| 523 | + |
| 524 | + options.onChange(unscale(c)); |
| 525 | + }; |
| 526 | + /*}}}*/ |
| 527 | + function show()/*{{{*/ |
| 528 | + { |
| 529 | + $sel.show(); |
| 530 | + $img.css('opacity',options.bgOpacity); |
| 531 | + awake = true; |
| 532 | + }; |
| 533 | + /*}}}*/ |
| 534 | + function release()/*{{{*/ |
| 535 | + { |
| 536 | + disableHandles(); |
| 537 | + $sel.hide(); |
| 538 | + $img.css('opacity',1); |
| 539 | + awake = false; |
| 540 | + }; |
| 541 | + /*}}}*/ |
| 542 | + function hide()/*{{{*/ |
| 543 | + { |
| 544 | + release(); |
| 545 | + $img.css('opacity',1); |
| 546 | + awake = false; |
| 547 | + }; |
| 548 | + /*}}}*/ |
| 549 | + function enableHandles()/*{{{*/ |
| 550 | + { |
| 551 | + seehandles = true; |
| 552 | + moveHandles(Coords.getFixed()); |
| 553 | + $hdl_holder.show(); |
| 554 | + }; |
| 555 | + /*}}}*/ |
| 556 | + function disableHandles()/*{{{*/ |
| 557 | + { |
| 558 | + seehandles = false; |
| 559 | + $hdl_holder.hide(); |
| 560 | + }; |
| 561 | + /*}}}*/ |
| 562 | + function animMode(v)/*{{{*/ |
| 563 | + { |
| 564 | + (animating = v) ? disableHandles(): enableHandles(); |
| 565 | + }; |
| 566 | + /*}}}*/ |
| 567 | + function done()/*{{{*/ |
| 568 | + { |
| 569 | + var c = Coords.getFixed(); |
| 570 | + animMode(false); |
| 571 | + refresh(); |
| 572 | + }; |
| 573 | + /*}}}*/ |
| 574 | + |
| 575 | + disableHandles(); |
| 576 | + |
| 577 | + $img_holder.append |
| 578 | + ( |
| 579 | + $('<div />') |
| 580 | + .addClass(cssClass('tracker')) |
| 581 | + .mousedown(createDragger('move')) |
| 582 | + .css({ cursor: 'move', position: 'absolute', zIndex: 360, opacity: 0 }) |
| 583 | + ); |
| 584 | + |
| 585 | + return { |
| 586 | + updateVisible: updateVisible, |
| 587 | + update: update, |
| 588 | + release: release, |
| 589 | + show: show, |
| 590 | + hide: hide, |
| 591 | + enableHandles: enableHandles, |
| 592 | + disableHandles: disableHandles, |
| 593 | + animMode: animMode, |
| 594 | + done: done |
| 595 | + }; |
| 596 | + }(); |
| 597 | + /*}}}*/ |
| 598 | + var Tracker = function()/*{{{*/ |
| 599 | + { |
| 600 | + var onMove = function() { }, |
| 601 | + onDone = function() { }, |
| 602 | + trackDoc = options.trackDocument; |
| 603 | + |
| 604 | + if (!trackDoc) |
| 605 | + { |
| 606 | + $trk |
| 607 | + .mousemove(trackMove) |
| 608 | + .mouseup(trackUp) |
| 609 | + .mouseout(trackUp) |
| 610 | + ; |
| 611 | + } |
| 612 | + |
| 613 | + function toFront()/*{{{*/ |
| 614 | + { |
| 615 | + if (trackDoc) |
| 616 | + { |
| 617 | + $(document) |
| 618 | + .mousemove(trackMove) |
| 619 | + .mouseup(trackUp) |
| 620 | + ; |
| 621 | + } |
| 622 | + $trk.css({zIndex:450}); |
| 623 | + } |
| 624 | + /*}}}*/ |
| 625 | + function toBack()/*{{{*/ |
| 626 | + { |
| 627 | + if (trackDoc) |
| 628 | + { |
| 629 | + $(document) |
| 630 | + .unbind('mousemove',trackMove) |
| 631 | + .unbind('mouseup',trackUp) |
| 632 | + ; |
| 633 | + } |
| 634 | + $trk.css({zIndex:290}); |
| 635 | + } |
| 636 | + /*}}}*/ |
| 637 | + function trackMove(e)/*{{{*/ |
| 638 | + { |
| 639 | + onMove(mouseAbs(e)); |
| 640 | + }; |
| 641 | + /*}}}*/ |
| 642 | + function trackUp(e)/*{{{*/ |
| 643 | + { |
| 644 | + e.preventDefault(); |
| 645 | + e.stopPropagation(); |
| 646 | + |
| 647 | + if (btndown) |
| 648 | + { |
| 649 | + btndown = false; |
| 650 | + |
| 651 | + onDone(mouseAbs(e)); |
| 652 | + options.onSelect(unscale(Coords.getFixed())); |
| 653 | + toBack(); |
| 654 | + onMove = function() { }; |
| 655 | + onDone = function() { }; |
| 656 | + } |
| 657 | + |
| 658 | + return false; |
| 659 | + }; |
| 660 | + /*}}}*/ |
| 661 | + |
| 662 | + function activateHandlers(move,done)/* {{{ */ |
| 663 | + { |
| 664 | + btndown = true; |
| 665 | + onMove = move; |
| 666 | + onDone = done; |
| 667 | + toFront(); |
| 668 | + return false; |
| 669 | + }; |
| 670 | + /* }}} */ |
| 671 | + |
| 672 | + function setCursor(t) { $trk.css('cursor',t); }; |
| 673 | + |
| 674 | + $img.before($trk); |
| 675 | + return { |
| 676 | + activateHandlers: activateHandlers, |
| 677 | + setCursor: setCursor |
| 678 | + }; |
| 679 | + }(); |
| 680 | + /*}}}*/ |
| 681 | + var KeyManager = function()/*{{{*/ |
| 682 | + { |
| 683 | + var $keymgr = $('<input type="radio" />') |
| 684 | + .css({ position: 'absolute', left: '-30px' }) |
| 685 | + .keydown(parseKey) |
| 686 | + .keyup(watchShift) |
| 687 | + .blur(onBlur), |
| 688 | + |
| 689 | + $keywrap = $('<div />') |
| 690 | + .css({ |
| 691 | + position: 'absolute', |
| 692 | + overflow: 'hidden' |
| 693 | + }) |
| 694 | + .append($keymgr) |
| 695 | + ; |
| 696 | + |
| 697 | + function watchKeys()/*{{{*/ |
| 698 | + { |
| 699 | + if (options.keySupport) |
| 700 | + { |
| 701 | + $keymgr.show(); |
| 702 | + $keymgr.focus(); |
| 703 | + } |
| 704 | + }; |
| 705 | + /*}}}*/ |
| 706 | + function onBlur(e)/*{{{*/ |
| 707 | + { |
| 708 | + $keymgr.hide(); |
| 709 | + }; |
| 710 | + /*}}}*/ |
| 711 | + function watchShift(e)/*{{{*/ |
| 712 | + { |
| 713 | + if (!options.watchShift) return; |
| 714 | + var init_shift = shift_down, fc; |
| 715 | + shift_down = e.shiftKey ? true : false; |
| 716 | + |
| 717 | + if (init_shift != shift_down) { |
| 718 | + if (shift_down && btndown) { |
| 719 | + fc = Coords.getFixed(); |
| 720 | + aspectLock = fc.w / fc.h; |
| 721 | + } else aspectLock = 0; |
| 722 | + Selection.update(); |
| 723 | + } |
| 724 | + e.stopPropagation(); |
| 725 | + e.preventDefault(); |
| 726 | + return false; |
| 727 | + }; |
| 728 | + /*}}}*/ |
| 729 | + function doNudge(e,x,y)/*{{{*/ |
| 730 | + { |
| 731 | + Coords.moveOffset([x,y]); |
| 732 | + Selection.updateVisible(); |
| 733 | + e.preventDefault(); |
| 734 | + e.stopPropagation(); |
| 735 | + }; |
| 736 | + /*}}}*/ |
| 737 | + function parseKey(e)/*{{{*/ |
| 738 | + { |
| 739 | + if (e.ctrlKey) return true; |
| 740 | + watchShift(e); |
| 741 | + var nudge = shift_down ? 10 : 1; |
| 742 | + switch(e.keyCode) |
| 743 | + { |
| 744 | + case 37: doNudge(e,-nudge,0); break; |
| 745 | + case 39: doNudge(e,nudge,0); break; |
| 746 | + case 38: doNudge(e,0,-nudge); break; |
| 747 | + case 40: doNudge(e,0,nudge); break; |
| 748 | + |
| 749 | + case 27: Selection.release(); break; |
| 750 | + |
| 751 | + case 9: return true; |
| 752 | + } |
| 753 | + |
| 754 | + return false; |
| 755 | + }; |
| 756 | + /*}}}*/ |
| 757 | + |
| 758 | + if (options.keySupport) $keywrap.insertBefore($img); |
| 759 | + return { |
| 760 | + watchKeys: watchKeys |
| 761 | + }; |
| 762 | + }(); |
| 763 | + /*}}}*/ |
| 764 | + |
| 765 | + // }}} |
| 766 | + // Internal Methods {{{ |
| 767 | + |
| 768 | + function px(n) { return '' + parseInt(n) + 'px'; }; |
| 769 | + function pct(n) { return '' + parseInt(n) + '%'; }; |
| 770 | + function cssClass(cl) { return options.baseClass + '-' + cl; }; |
| 771 | + function getPos(obj)/*{{{*/ |
| 772 | + { |
| 773 | + // Updated in v0.9.4 to use built-in dimensions plugin |
| 774 | + var pos = $(obj).offset(); |
| 775 | + return [ pos.left, pos.top ]; |
| 776 | + }; |
| 777 | + /*}}}*/ |
| 778 | + function mouseAbs(e)/*{{{*/ |
| 779 | + { |
| 780 | + return [ (e.pageX - docOffset[0]), (e.pageY - docOffset[1]) ]; |
| 781 | + }; |
| 782 | + /*}}}*/ |
| 783 | + function myCursor(type)/*{{{*/ |
| 784 | + { |
| 785 | + if (type != lastcurs) |
| 786 | + { |
| 787 | + Tracker.setCursor(type); |
| 788 | + //Handles.xsetCursor(type); |
| 789 | + lastcurs = type; |
| 790 | + } |
| 791 | + }; |
| 792 | + /*}}}*/ |
| 793 | + function startDragMode(mode,pos)/*{{{*/ |
| 794 | + { |
| 795 | + docOffset = getPos(obj); |
| 796 | + Tracker.setCursor(mode=='move'?mode:mode+'-resize'); |
| 797 | + |
| 798 | + if (mode == 'move') |
| 799 | + return Tracker.activateHandlers(createMover(pos), doneSelect); |
| 800 | + |
| 801 | + var fc = Coords.getFixed(); |
| 802 | + Coords.setPressed(Coords.getCorner(oppLockCorner(mode))); |
| 803 | + Tracker.activateHandlers(dragmodeHandler(mode,fc),doneSelect); |
| 804 | + }; |
| 805 | + /*}}}*/ |
| 806 | + function dragmodeHandler(mode,f)/*{{{*/ |
| 807 | + { |
| 808 | + return function(pos) { |
| 809 | + if (!options.aspectRatio && !aspectLock) switch(mode) |
| 810 | + { |
| 811 | + case 'e': pos[1] = f.y2; break; |
| 812 | + case 'w': pos[1] = f.y2; break; |
| 813 | + case 'n': pos[0] = f.x2; break; |
| 814 | + case 's': pos[0] = f.x2; break; |
| 815 | + } |
| 816 | + else switch(mode) |
| 817 | + { |
| 818 | + case 'e': pos[1] = f.y+1; break; |
| 819 | + case 'w': pos[1] = f.y+1; break; |
| 820 | + case 'n': pos[0] = f.x+1; break; |
| 821 | + case 's': pos[0] = f.x+1; break; |
| 822 | + } |
| 823 | + Coords.setCurrent(pos); |
| 824 | + Selection.update(); |
| 825 | + }; |
| 826 | + }; |
| 827 | + /*}}}*/ |
| 828 | + function createMover(pos)/*{{{*/ |
| 829 | + { |
| 830 | + var lloc = pos; |
| 831 | + KeyManager.watchKeys(); |
| 832 | + |
| 833 | + return function(pos) |
| 834 | + { |
| 835 | + Coords.moveOffset([pos[0] - lloc[0], pos[1] - lloc[1]]); |
| 836 | + lloc = pos; |
| 837 | + |
| 838 | + Selection.update(); |
| 839 | + }; |
| 840 | + }; |
| 841 | + /*}}}*/ |
| 842 | + function oppLockCorner(ord)/*{{{*/ |
| 843 | + { |
| 844 | + switch(ord) |
| 845 | + { |
| 846 | + case 'n': return 'sw'; |
| 847 | + case 's': return 'nw'; |
| 848 | + case 'e': return 'nw'; |
| 849 | + case 'w': return 'ne'; |
| 850 | + case 'ne': return 'sw'; |
| 851 | + case 'nw': return 'se'; |
| 852 | + case 'se': return 'nw'; |
| 853 | + case 'sw': return 'ne'; |
| 854 | + }; |
| 855 | + }; |
| 856 | + /*}}}*/ |
| 857 | + function createDragger(ord)/*{{{*/ |
| 858 | + { |
| 859 | + return function(e) { |
| 860 | + var spt = scrollParent.scrollTop(); |
| 861 | + var spl = scrollParent.scrollLeft(); |
| 862 | + |
| 863 | + btndown = true; |
| 864 | + startDragMode(ord,mouseAbs(e)); |
| 865 | + e.stopPropagation(); |
| 866 | + e.preventDefault(); |
| 867 | + |
| 868 | + scrollParent.scrollTop( spt ); |
| 869 | + scrollParent.scrollLeft( spl ); |
| 870 | + return false; |
| 871 | + }; |
| 872 | + }; |
| 873 | + /*}}}*/ |
| 874 | + function presize($obj,w,h)/*{{{*/ |
| 875 | + { |
| 876 | + var nw = $obj.width(), nh = $obj.height(); |
| 877 | + if ((nw > w) && w > 0) |
| 878 | + { |
| 879 | + nw = w; |
| 880 | + nh = (w/$obj.width()) * $obj.height(); |
| 881 | + } |
| 882 | + if ((nh > h) && h > 0) |
| 883 | + { |
| 884 | + nh = h; |
| 885 | + nw = (h/$obj.height()) * $obj.width(); |
| 886 | + } |
| 887 | + xscale = $obj.width() / nw; |
| 888 | + yscale = $obj.height() / nh; |
| 889 | + $obj.width(nw).height(nh); |
| 890 | + }; |
| 891 | + /*}}}*/ |
| 892 | + function unscale(c)/*{{{*/ |
| 893 | + { |
| 894 | + return { |
| 895 | + x: parseInt(c.x * xscale), y: parseInt(c.y * yscale), |
| 896 | + x2: parseInt(c.x2 * xscale), y2: parseInt(c.y2 * yscale), |
| 897 | + w: parseInt(c.w * xscale), h: parseInt(c.h * yscale) |
| 898 | + }; |
| 899 | + }; |
| 900 | + /*}}}*/ |
| 901 | + function doneSelect(pos)/*{{{*/ |
| 902 | + { |
| 903 | + var c = Coords.getFixed(); |
| 904 | + if (c.w > options.minSelect[0] && c.h > options.minSelect[1]) |
| 905 | + { |
| 906 | + Selection.enableHandles(); |
| 907 | + Selection.done(); |
| 908 | + } |
| 909 | + else |
| 910 | + { |
| 911 | + Selection.release(); |
| 912 | + } |
| 913 | + Tracker.setCursor('crosshair'); |
| 914 | + }; |
| 915 | + /*}}}*/ |
| 916 | + function newSelection(e)/*{{{*/ |
| 917 | + { |
| 918 | + var spt = scrollParent.scrollTop(); |
| 919 | + var spl = scrollParent.scrollLeft(); |
| 920 | + |
| 921 | + |
| 922 | + btndown = true; |
| 923 | + docOffset = getPos(obj); |
| 924 | + Selection.release(); |
| 925 | + Selection.disableHandles(); |
| 926 | + myCursor('crosshair'); |
| 927 | + Coords.setPressed(mouseAbs(e)); |
| 928 | + Tracker.activateHandlers(selectDrag,doneSelect); |
| 929 | + KeyManager.watchKeys(); |
| 930 | + |
| 931 | + e.stopPropagation(); |
| 932 | + e.preventDefault(); |
| 933 | + |
| 934 | + scrollParent.scrollTop( spt ); |
| 935 | + scrollParent.scrollLeft( spl ); |
| 936 | + |
| 937 | + return false; |
| 938 | + }; |
| 939 | + /*}}}*/ |
| 940 | + function selectDrag(pos)/*{{{*/ |
| 941 | + { |
| 942 | + Coords.setCurrent(pos); |
| 943 | + Selection.update(); |
| 944 | + |
| 945 | + }; |
| 946 | + /*}}}*/ |
| 947 | + |
| 948 | + // }}} |
| 949 | + // Public API {{{ |
| 950 | + |
| 951 | + function animateTo(a)/*{{{*/ |
| 952 | + { |
| 953 | + var x1 = a[0], |
| 954 | + y1 = a[1], |
| 955 | + x2 = a[2], |
| 956 | + y2 = a[3]; |
| 957 | + |
| 958 | + if (animating) return; |
| 959 | + var animto = Coords.flipCoords(x1,y1,x2,y2); |
| 960 | + var c = Coords.getFixed(); |
| 961 | + var animat = initcr = [ c.x, c.y, c.x2, c.y2 ]; |
| 962 | + var interv = options.animationDelay; |
| 963 | + //var ix1 = (animto[0] - initcr[0]) / steps; |
| 964 | + //var iy1 = (animto[1] - initcr[1]) / steps; |
| 965 | + //var ix2 = (animto[2] - initcr[2]) / steps; |
| 966 | + //var iy2 = (animto[3] - initcr[3]) / steps; |
| 967 | + |
| 968 | + var x = animat[0]; |
| 969 | + var y = animat[1]; |
| 970 | + var x2 = animat[2]; |
| 971 | + var y2 = animat[3]; |
| 972 | + var ix1 = animto[0] - initcr[0]; |
| 973 | + var iy1 = animto[1] - initcr[1]; |
| 974 | + var ix2 = animto[2] - initcr[2]; |
| 975 | + var iy2 = animto[3] - initcr[3]; |
| 976 | + var pcent = 0; |
| 977 | + var velocity = options.swingSpeed; |
| 978 | + |
| 979 | + Selection.animMode(true); |
| 980 | + |
| 981 | + var animator = function() |
| 982 | + { |
| 983 | + return function() |
| 984 | + { |
| 985 | + pcent += (100 - pcent) / velocity; |
| 986 | + |
| 987 | + animat[0] = x + ((pcent / 100) * ix1); |
| 988 | + animat[1] = y + ((pcent / 100) * iy1); |
| 989 | + animat[2] = x2 + ((pcent / 100) * ix2); |
| 990 | + animat[3] = y2 + ((pcent / 100) * iy2); |
| 991 | + |
| 992 | + if (pcent < 100) animateStart(); |
| 993 | + else Selection.done(); |
| 994 | + |
| 995 | + if (pcent >= 99.8) pcent = 100; |
| 996 | + |
| 997 | + setSelect(animat); |
| 998 | + }; |
| 999 | + }(); |
| 1000 | + |
| 1001 | + function animateStart() |
| 1002 | + { window.setTimeout(animator,interv); }; |
| 1003 | + |
| 1004 | + animateStart(); |
| 1005 | + |
| 1006 | + }; |
| 1007 | + /*}}}*/ |
| 1008 | + function setSelect(l) /*{{{*/ |
| 1009 | + { |
| 1010 | + Coords.setPressed([l[0],l[1]]); |
| 1011 | + Coords.setCurrent([l[2],l[3]]); |
| 1012 | + Selection.update(); |
| 1013 | + }; |
| 1014 | + /*}}}*/ |
| 1015 | + function setOptions(opt)/*{{{*/ |
| 1016 | + { |
| 1017 | + if (typeof(opt) != 'object') opt = { }; |
| 1018 | + options = $.extend(options,opt); |
| 1019 | + |
| 1020 | + if (typeof(options.onChange)!=='function') |
| 1021 | + options.onChange = function() { }; |
| 1022 | + |
| 1023 | + if (typeof(options.onSelect)!=='function') |
| 1024 | + options.onSelect = function() { }; |
| 1025 | + }; |
| 1026 | + /*}}}*/ |
| 1027 | + function tellSelect()/*{{{*/ |
| 1028 | + { |
| 1029 | + return unscale(Coords.getFixed()); |
| 1030 | + }; |
| 1031 | + /*}}}*/ |
| 1032 | + function tellScaled()/*{{{*/ |
| 1033 | + { |
| 1034 | + return Coords.getFixed(); |
| 1035 | + }; |
| 1036 | + /*}}}*/ |
| 1037 | + function setOptionsNew(opt)/*{{{*/ |
| 1038 | + { |
| 1039 | + setOptions(opt); |
| 1040 | + |
| 1041 | + if ('setSelect' in opt) { |
| 1042 | + setSelect(opt.setSelect); |
| 1043 | + Selection.done(); |
| 1044 | + } |
| 1045 | + }; |
| 1046 | + /*}}}*/ |
| 1047 | + |
| 1048 | + if (typeof(opt) != 'object') opt = { }; |
| 1049 | + if ('setSelect' in opt) { setSelect(opt.setSelect); Selection.done(); } |
| 1050 | + |
| 1051 | + // }}} |
| 1052 | + |
| 1053 | + var xlimit = options.maxSize[0] || 0; |
| 1054 | + var ylimit = options.maxSize[1] || 0; |
| 1055 | + var xmin = options.minSize[0] || 0; |
| 1056 | + var ymin = options.minSize[1] || 0; |
| 1057 | + |
| 1058 | + Tracker.setCursor('crosshair'); |
| 1059 | + |
| 1060 | + return { |
| 1061 | + animateTo: animateTo, |
| 1062 | + setSelect: setSelect, |
| 1063 | + setOptions: setOptionsNew, |
| 1064 | + tellSelect: tellSelect, |
| 1065 | + tellScaled: tellScaled |
| 1066 | + }; |
| 1067 | +}; |
| 1068 | + |
| 1069 | + |
| 1070 | +$.fn.Jcrop = function(options)/*{{{*/ |
| 1071 | +{ |
| 1072 | + function attachWhenDone(from)/*{{{*/ |
| 1073 | + { |
| 1074 | + var loadsrc = options.useImg || from.src; |
| 1075 | + var img = new Image(); |
| 1076 | + var from = from; |
| 1077 | + img.onload = function() { |
| 1078 | + $(from).hide().after(img); |
| 1079 | + from.Jcrop = $.Jcrop(img,options); |
| 1080 | + }; |
| 1081 | + img.src = loadsrc; |
| 1082 | + }; |
| 1083 | + /*}}}*/ |
| 1084 | + if (typeof(options) !== 'object') options = { }; |
| 1085 | + |
| 1086 | + // Iterate over each object, attach Jcrop |
| 1087 | + this.each(function() |
| 1088 | + { |
| 1089 | + // If we've already attached to this object |
| 1090 | + if ('Jcrop' in this) |
| 1091 | + { |
| 1092 | + // The API can be requested this way (undocumented) |
| 1093 | + if (options == 'api') return this.Jcrop; |
| 1094 | + // Otherwise, we just reset the options... |
| 1095 | + else this.Jcrop.setOptions(options); |
| 1096 | + } |
| 1097 | + // If we haven't been attached, preload and attach |
| 1098 | + else attachWhenDone(this); |
| 1099 | + }); |
| 1100 | + |
| 1101 | + // Return "this" so we're chainable a la jQuery plugin-style! |
| 1102 | + return this; |
| 1103 | +}; |
| 1104 | +/*}}}*/ |
| 1105 | + |
| 1106 | +})(jQuery); |
| 1107 | + |
| 1108 | + |
Index: trunk/extensions/MetavidWiki/skins/mv_embed/jquery/plugins/Jcrop/js/jquery.pack.js |
— | — | @@ -0,0 +1,11 @@ |
| 2 | +/* |
| 3 | + * jQuery 1.2.6 - New Wave Javascript |
| 4 | + * |
| 5 | + * Copyright (c) 2008 John Resig (jquery.com) |
| 6 | + * Dual licensed under the MIT (MIT-LICENSE.txt) |
| 7 | + * and GPL (GPL-LICENSE.txt) licenses. |
| 8 | + * |
| 9 | + * $Date: 2008/07/21 00:59:31 $ |
| 10 | + * $Rev: 5685 $ |
| 11 | + */ |
| 12 | +eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('(H(){J w=1b.4M,3m$=1b.$;J D=1b.4M=1b.$=H(a,b){I 2B D.17.5j(a,b)};J u=/^[^<]*(<(.|\\s)+>)[^>]*$|^#(\\w+)$/,62=/^.[^:#\\[\\.]*$/,12;D.17=D.44={5j:H(d,b){d=d||S;G(d.16){7[0]=d;7.K=1;I 7}G(1j d=="23"){J c=u.2D(d);G(c&&(c[1]||!b)){G(c[1])d=D.4h([c[1]],b);N{J a=S.61(c[3]);G(a){G(a.2v!=c[3])I D().2q(d);I D(a)}d=[]}}N I D(b).2q(d)}N G(D.1D(d))I D(S)[D.17.27?"27":"43"](d);I 7.6Y(D.2d(d))},5w:"1.2.6",8G:H(){I 7.K},K:0,3p:H(a){I a==12?D.2d(7):7[a]},2I:H(b){J a=D(b);a.5n=7;I a},6Y:H(a){7.K=0;2p.44.1p.1w(7,a);I 7},P:H(a,b){I D.P(7,a,b)},5i:H(b){J a=-1;I D.2L(b&&b.5w?b[0]:b,7)},1K:H(c,a,b){J d=c;G(c.1q==56)G(a===12)I 7[0]&&D[b||"1K"](7[0],c);N{d={};d[c]=a}I 7.P(H(i){R(c 1n d)D.1K(b?7.V:7,c,D.1i(7,d[c],b,i,c))})},1g:H(b,a){G((b==\'2h\'||b==\'1Z\')&&3d(a)<0)a=12;I 7.1K(b,a,"2a")},1r:H(b){G(1j b!="49"&&b!=U)I 7.4E().3v((7[0]&&7[0].2z||S).5F(b));J a="";D.P(b||7,H(){D.P(7.3t,H(){G(7.16!=8)a+=7.16!=1?7.76:D.17.1r([7])})});I a},5z:H(b){G(7[0])D(b,7[0].2z).5y().39(7[0]).2l(H(){J a=7;1B(a.1x)a=a.1x;I a}).3v(7);I 7},8Y:H(a){I 7.P(H(){D(7).6Q().5z(a)})},8R:H(a){I 7.P(H(){D(7).5z(a)})},3v:H(){I 7.3W(19,M,Q,H(a){G(7.16==1)7.3U(a)})},6F:H(){I 7.3W(19,M,M,H(a){G(7.16==1)7.39(a,7.1x)})},6E:H(){I 7.3W(19,Q,Q,H(a){7.1d.39(a,7)})},5q:H(){I 7.3W(19,Q,M,H(a){7.1d.39(a,7.2H)})},3l:H(){I 7.5n||D([])},2q:H(b){J c=D.2l(7,H(a){I D.2q(b,a)});I 7.2I(/[^+>] [^+>]/.11(b)||b.1h("..")>-1?D.4r(c):c)},5y:H(e){J f=7.2l(H(){G(D.14.1f&&!D.4n(7)){J a=7.6o(M),5h=S.3h("1v");5h.3U(a);I D.4h([5h.4H])[0]}N I 7.6o(M)});J d=f.2q("*").5c().P(H(){G(7[E]!=12)7[E]=U});G(e===M)7.2q("*").5c().P(H(i){G(7.16==3)I;J c=D.L(7,"3w");R(J a 1n c)R(J b 1n c[a])D.W.1e(d[i],a,c[a][b],c[a][b].L)});I f},1E:H(b){I 7.2I(D.1D(b)&&D.3C(7,H(a,i){I b.1k(a,i)})||D.3g(b,7))},4Y:H(b){G(b.1q==56)G(62.11(b))I 7.2I(D.3g(b,7,M));N b=D.3g(b,7);J a=b.K&&b[b.K-1]!==12&&!b.16;I 7.1E(H(){I a?D.2L(7,b)<0:7!=b})},1e:H(a){I 7.2I(D.4r(D.2R(7.3p(),1j a==\'23\'?D(a):D.2d(a))))},3F:H(a){I!!a&&D.3g(a,7).K>0},7T:H(a){I 7.3F("."+a)},6e:H(b){G(b==12){G(7.K){J c=7[0];G(D.Y(c,"2A")){J e=c.64,63=[],15=c.15,2V=c.O=="2A-2V";G(e<0)I U;R(J i=2V?e:0,2f=2V?e+1:15.K;i<2f;i++){J d=15[i];G(d.2W){b=D.14.1f&&!d.at.2x.an?d.1r:d.2x;G(2V)I b;63.1p(b)}}I 63}N I(7[0].2x||"").1o(/\\r/g,"")}I 12}G(b.1q==4L)b+=\'\';I 7.P(H(){G(7.16!=1)I;G(b.1q==2p&&/5O|5L/.11(7.O))7.4J=(D.2L(7.2x,b)>=0||D.2L(7.34,b)>=0);N G(D.Y(7,"2A")){J a=D.2d(b);D("9R",7).P(H(){7.2W=(D.2L(7.2x,a)>=0||D.2L(7.1r,a)>=0)});G(!a.K)7.64=-1}N 7.2x=b})},2K:H(a){I a==12?(7[0]?7[0].4H:U):7.4E().3v(a)},7b:H(a){I 7.5q(a).21()},79:H(i){I 7.3s(i,i+1)},3s:H(){I 7.2I(2p.44.3s.1w(7,19))},2l:H(b){I 7.2I(D.2l(7,H(a,i){I b.1k(a,i,a)}))},5c:H(){I 7.1e(7.5n)},L:H(d,b){J a=d.1R(".");a[1]=a[1]?"."+a[1]:"";G(b===12){J c=7.5C("9z"+a[1]+"!",[a[0]]);G(c===12&&7.K)c=D.L(7[0],d);I c===12&&a[1]?7.L(a[0]):c}N I 7.1P("9u"+a[1]+"!",[a[0],b]).P(H(){D.L(7,d,b)})},3b:H(a){I 7.P(H(){D.3b(7,a)})},3W:H(g,f,h,d){J e=7.K>1,3x;I 7.P(H(){G(!3x){3x=D.4h(g,7.2z);G(h)3x.9o()}J b=7;G(f&&D.Y(7,"1T")&&D.Y(3x[0],"4F"))b=7.3H("22")[0]||7.3U(7.2z.3h("22"));J c=D([]);D.P(3x,H(){J a=e?D(7).5y(M)[0]:7;G(D.Y(a,"1m"))c=c.1e(a);N{G(a.16==1)c=c.1e(D("1m",a).21());d.1k(b,a)}});c.P(6T)})}};D.17.5j.44=D.17;H 6T(i,a){G(a.4d)D.3Y({1a:a.4d,31:Q,1O:"1m"});N D.5u(a.1r||a.6O||a.4H||"");G(a.1d)a.1d.37(a)}H 1z(){I+2B 8J}D.1l=D.17.1l=H(){J b=19[0]||{},i=1,K=19.K,4x=Q,15;G(b.1q==8I){4x=b;b=19[1]||{};i=2}G(1j b!="49"&&1j b!="H")b={};G(K==i){b=7;--i}R(;i<K;i++)G((15=19[i])!=U)R(J c 1n 15){J a=b[c],2w=15[c];G(b===2w)6M;G(4x&&2w&&1j 2w=="49"&&!2w.16)b[c]=D.1l(4x,a||(2w.K!=U?[]:{}),2w);N G(2w!==12)b[c]=2w}I b};J E="4M"+1z(),6K=0,5r={},6G=/z-?5i|8B-?8A|1y|6B|8v-?1Z/i,3P=S.3P||{};D.1l({8u:H(a){1b.$=3m$;G(a)1b.4M=w;I D},1D:H(a){I!!a&&1j a!="23"&&!a.Y&&a.1q!=2p&&/^[\\s[]?H/.11(a+"")},4n:H(a){I a.1C&&!a.1c||a.2j&&a.2z&&!a.2z.1c},5u:H(a){a=D.3k(a);G(a){J b=S.3H("6w")[0]||S.1C,1m=S.3h("1m");1m.O="1r/4t";G(D.14.1f)1m.1r=a;N 1m.3U(S.5F(a));b.39(1m,b.1x);b.37(1m)}},Y:H(b,a){I b.Y&&b.Y.2r()==a.2r()},1Y:{},L:H(c,d,b){c=c==1b?5r:c;J a=c[E];G(!a)a=c[E]=++6K;G(d&&!D.1Y[a])D.1Y[a]={};G(b!==12)D.1Y[a][d]=b;I d?D.1Y[a][d]:a},3b:H(c,b){c=c==1b?5r:c;J a=c[E];G(b){G(D.1Y[a]){2U D.1Y[a][b];b="";R(b 1n D.1Y[a])1X;G(!b)D.3b(c)}}N{1U{2U c[E]}1V(e){G(c.5l)c.5l(E)}2U D.1Y[a]}},P:H(d,a,c){J e,i=0,K=d.K;G(c){G(K==12){R(e 1n d)G(a.1w(d[e],c)===Q)1X}N R(;i<K;)G(a.1w(d[i++],c)===Q)1X}N{G(K==12){R(e 1n d)G(a.1k(d[e],e,d[e])===Q)1X}N R(J b=d[0];i<K&&a.1k(b,i,b)!==Q;b=d[++i]){}}I d},1i:H(b,a,c,i,d){G(D.1D(a))a=a.1k(b,i);I a&&a.1q==4L&&c=="2a"&&!6G.11(d)?a+"2X":a},1F:{1e:H(c,b){D.P((b||"").1R(/\\s+/),H(i,a){G(c.16==1&&!D.1F.3T(c.1F,a))c.1F+=(c.1F?" ":"")+a})},21:H(c,b){G(c.16==1)c.1F=b!=12?D.3C(c.1F.1R(/\\s+/),H(a){I!D.1F.3T(b,a)}).6s(" "):""},3T:H(b,a){I D.2L(a,(b.1F||b).6r().1R(/\\s+/))>-1}},6q:H(b,c,a){J e={};R(J d 1n c){e[d]=b.V[d];b.V[d]=c[d]}a.1k(b);R(J d 1n c)b.V[d]=e[d]},1g:H(d,e,c){G(e=="2h"||e=="1Z"){J b,3X={30:"5x",5g:"1G",18:"3I"},35=e=="2h"?["5e","6k"]:["5G","6i"];H 5b(){b=e=="2h"?d.8f:d.8c;J a=0,2C=0;D.P(35,H(){a+=3d(D.2a(d,"57"+7,M))||0;2C+=3d(D.2a(d,"2C"+7+"4b",M))||0});b-=29.83(a+2C)}G(D(d).3F(":4j"))5b();N D.6q(d,3X,5b);I 29.2f(0,b)}I D.2a(d,e,c)},2a:H(f,l,k){J e,V=f.V;H 3E(b){G(!D.14.2k)I Q;J a=3P.54(b,U);I!a||a.52("3E")==""}G(l=="1y"&&D.14.1f){e=D.1K(V,"1y");I e==""?"1":e}G(D.14.2G&&l=="18"){J d=V.50;V.50="0 7Y 7W";V.50=d}G(l.1I(/4i/i))l=y;G(!k&&V&&V[l])e=V[l];N G(3P.54){G(l.1I(/4i/i))l="4i";l=l.1o(/([A-Z])/g,"-$1").3y();J c=3P.54(f,U);G(c&&!3E(f))e=c.52(l);N{J g=[],2E=[],a=f,i=0;R(;a&&3E(a);a=a.1d)2E.6h(a);R(;i<2E.K;i++)G(3E(2E[i])){g[i]=2E[i].V.18;2E[i].V.18="3I"}e=l=="18"&&g[2E.K-1]!=U?"2F":(c&&c.52(l))||"";R(i=0;i<g.K;i++)G(g[i]!=U)2E[i].V.18=g[i]}G(l=="1y"&&e=="")e="1"}N G(f.4g){J h=l.1o(/\\-(\\w)/g,H(a,b){I b.2r()});e=f.4g[l]||f.4g[h];G(!/^\\d+(2X)?$/i.11(e)&&/^\\d/.11(e)){J j=V.1A,66=f.65.1A;f.65.1A=f.4g.1A;V.1A=e||0;e=V.aM+"2X";V.1A=j;f.65.1A=66}}I e},4h:H(l,h){J k=[];h=h||S;G(1j h.3h==\'12\')h=h.2z||h[0]&&h[0].2z||S;D.P(l,H(i,d){G(!d)I;G(d.1q==4L)d+=\'\';G(1j d=="23"){d=d.1o(/(<(\\w+)[^>]*?)\\/>/g,H(b,a,c){I c.1I(/^(aK|4f|7E|aG|4T|7A|aB|3n|az|ay|av)$/i)?b:a+"></"+c+">"});J f=D.3k(d).3y(),1v=h.3h("1v");J e=!f.1h("<au")&&[1,"<2A 7w=\'7w\'>","</2A>"]||!f.1h("<ar")&&[1,"<7v>","</7v>"]||f.1I(/^<(aq|22|am|ak|ai)/)&&[1,"<1T>","</1T>"]||!f.1h("<4F")&&[2,"<1T><22>","</22></1T>"]||(!f.1h("<af")||!f.1h("<ad"))&&[3,"<1T><22><4F>","</4F></22></1T>"]||!f.1h("<7E")&&[2,"<1T><22></22><7q>","</7q></1T>"]||D.14.1f&&[1,"1v<1v>","</1v>"]||[0,"",""];1v.4H=e[1]+d+e[2];1B(e[0]--)1v=1v.5T;G(D.14.1f){J g=!f.1h("<1T")&&f.1h("<22")<0?1v.1x&&1v.1x.3t:e[1]=="<1T>"&&f.1h("<22")<0?1v.3t:[];R(J j=g.K-1;j>=0;--j)G(D.Y(g[j],"22")&&!g[j].3t.K)g[j].1d.37(g[j]);G(/^\\s/.11(d))1v.39(h.5F(d.1I(/^\\s*/)[0]),1v.1x)}d=D.2d(1v.3t)}G(d.K===0&&(!D.Y(d,"3V")&&!D.Y(d,"2A")))I;G(d[0]==12||D.Y(d,"3V")||d.15)k.1p(d);N k=D.2R(k,d)});I k},1K:H(d,f,c){G(!d||d.16==3||d.16==8)I 12;J e=!D.4n(d),40=c!==12,1f=D.14.1f;f=e&&D.3X[f]||f;G(d.2j){J g=/5Q|4d|V/.11(f);G(f=="2W"&&D.14.2k)d.1d.64;G(f 1n d&&e&&!g){G(40){G(f=="O"&&D.Y(d,"4T")&&d.1d)7p"O a3 a1\'t 9V 9U";d[f]=c}G(D.Y(d,"3V")&&d.7i(f))I d.7i(f).76;I d[f]}G(1f&&e&&f=="V")I D.1K(d.V,"9T",c);G(40)d.9Q(f,""+c);J h=1f&&e&&g?d.4G(f,2):d.4G(f);I h===U?12:h}G(1f&&f=="1y"){G(40){d.6B=1;d.1E=(d.1E||"").1o(/7f\\([^)]*\\)/,"")+(3r(c)+\'\'=="9L"?"":"7f(1y="+c*7a+")")}I d.1E&&d.1E.1h("1y=")>=0?(3d(d.1E.1I(/1y=([^)]*)/)[1])/7a)+\'\':""}f=f.1o(/-([a-z])/9H,H(a,b){I b.2r()});G(40)d[f]=c;I d[f]},3k:H(a){I(a||"").1o(/^\\s+|\\s+$/g,"")},2d:H(b){J a=[];G(b!=U){J i=b.K;G(i==U||b.1R||b.4I||b.1k)a[0]=b;N 1B(i)a[--i]=b[i]}I a},2L:H(b,a){R(J i=0,K=a.K;i<K;i++)G(a[i]===b)I i;I-1},2R:H(a,b){J i=0,T,2S=a.K;G(D.14.1f){1B(T=b[i++])G(T.16!=8)a[2S++]=T}N 1B(T=b[i++])a[2S++]=T;I a},4r:H(a){J c=[],2o={};1U{R(J i=0,K=a.K;i<K;i++){J b=D.L(a[i]);G(!2o[b]){2o[b]=M;c.1p(a[i])}}}1V(e){c=a}I c},3C:H(c,a,d){J b=[];R(J i=0,K=c.K;i<K;i++)G(!d!=!a(c[i],i))b.1p(c[i]);I b},2l:H(d,a){J c=[];R(J i=0,K=d.K;i<K;i++){J b=a(d[i],i);G(b!=U)c[c.K]=b}I c.7d.1w([],c)}});J v=9B.9A.3y();D.14={5B:(v.1I(/.+(?:9y|9x|9w|9v)[\\/: ]([\\d.]+)/)||[])[1],2k:/75/.11(v),2G:/2G/.11(v),1f:/1f/.11(v)&&!/2G/.11(v),42:/42/.11(v)&&!/(9s|75)/.11(v)};J y=D.14.1f?"7o":"72";D.1l({71:!D.14.1f||S.70=="6Z",3X:{"R":"9n","9k":"1F","4i":y,72:y,7o:y,9h:"9f",9e:"9d",9b:"99"}});D.P({6W:H(a){I a.1d},97:H(a){I D.4S(a,"1d")},95:H(a){I D.3a(a,2,"2H")},91:H(a){I D.3a(a,2,"4l")},8Z:H(a){I D.4S(a,"2H")},8X:H(a){I D.4S(a,"4l")},8W:H(a){I D.5v(a.1d.1x,a)},8V:H(a){I D.5v(a.1x)},6Q:H(a){I D.Y(a,"8U")?a.8T||a.8S.S:D.2d(a.3t)}},H(c,d){D.17[c]=H(b){J a=D.2l(7,d);G(b&&1j b=="23")a=D.3g(b,a);I 7.2I(D.4r(a))}});D.P({6P:"3v",8Q:"6F",39:"6E",8P:"5q",8O:"7b"},H(c,b){D.17[c]=H(){J a=19;I 7.P(H(){R(J i=0,K=a.K;i<K;i++)D(a[i])[b](7)})}});D.P({8N:H(a){D.1K(7,a,"");G(7.16==1)7.5l(a)},8M:H(a){D.1F.1e(7,a)},8L:H(a){D.1F.21(7,a)},8K:H(a){D.1F[D.1F.3T(7,a)?"21":"1e"](7,a)},21:H(a){G(!a||D.1E(a,[7]).r.K){D("*",7).1e(7).P(H(){D.W.21(7);D.3b(7)});G(7.1d)7.1d.37(7)}},4E:H(){D(">*",7).21();1B(7.1x)7.37(7.1x)}},H(a,b){D.17[a]=H(){I 7.P(b,19)}});D.P(["6N","4b"],H(i,c){J b=c.3y();D.17[b]=H(a){I 7[0]==1b?D.14.2G&&S.1c["5t"+c]||D.14.2k&&1b["5s"+c]||S.70=="6Z"&&S.1C["5t"+c]||S.1c["5t"+c]:7[0]==S?29.2f(29.2f(S.1c["4y"+c],S.1C["4y"+c]),29.2f(S.1c["2i"+c],S.1C["2i"+c])):a==12?(7.K?D.1g(7[0],b):U):7.1g(b,a.1q==56?a:a+"2X")}});H 25(a,b){I a[0]&&3r(D.2a(a[0],b,M),10)||0}J C=D.14.2k&&3r(D.14.5B)<8H?"(?:[\\\\w*3m-]|\\\\\\\\.)":"(?:[\\\\w\\8F-\\8E*3m-]|\\\\\\\\.)",6L=2B 4v("^>\\\\s*("+C+"+)"),6J=2B 4v("^("+C+"+)(#)("+C+"+)"),6I=2B 4v("^([#.]?)("+C+"*)");D.1l({6H:{"":H(a,i,m){I m[2]=="*"||D.Y(a,m[2])},"#":H(a,i,m){I a.4G("2v")==m[2]},":":{8D:H(a,i,m){I i<m[3]-0},8C:H(a,i,m){I i>m[3]-0},3a:H(a,i,m){I m[3]-0==i},79:H(a,i,m){I m[3]-0==i},3o:H(a,i){I i==0},3S:H(a,i,m,r){I i==r.K-1},6D:H(a,i){I i%2==0},6C:H(a,i){I i%2},"3o-4u":H(a){I a.1d.3H("*")[0]==a},"3S-4u":H(a){I D.3a(a.1d.5T,1,"4l")==a},"8z-4u":H(a){I!D.3a(a.1d.5T,2,"4l")},6W:H(a){I a.1x},4E:H(a){I!a.1x},8y:H(a,i,m){I(a.6O||a.8x||D(a).1r()||"").1h(m[3])>=0},4j:H(a){I"1G"!=a.O&&D.1g(a,"18")!="2F"&&D.1g(a,"5g")!="1G"},1G:H(a){I"1G"==a.O||D.1g(a,"18")=="2F"||D.1g(a,"5g")=="1G"},8w:H(a){I!a.3R},3R:H(a){I a.3R},4J:H(a){I a.4J},2W:H(a){I a.2W||D.1K(a,"2W")},1r:H(a){I"1r"==a.O},5O:H(a){I"5O"==a.O},5L:H(a){I"5L"==a.O},5p:H(a){I"5p"==a.O},3Q:H(a){I"3Q"==a.O},5o:H(a){I"5o"==a.O},6A:H(a){I"6A"==a.O},6z:H(a){I"6z"==a.O},2s:H(a){I"2s"==a.O||D.Y(a,"2s")},4T:H(a){I/4T|2A|6y|2s/i.11(a.Y)},3T:H(a,i,m){I D.2q(m[3],a).K},8t:H(a){I/h\\d/i.11(a.Y)},8s:H(a){I D.3C(D.3O,H(b){I a==b.T}).K}}},6x:[/^(\\[) *@?([\\w-]+) *([!*$^~=]*) *(\'?"?)(.*?)\\4 *\\]/,/^(:)([\\w-]+)\\("?\'?(.*?(\\(.*?\\))?[^(]*?)"?\'?\\)/,2B 4v("^([:.#]*)("+C+"+)")],3g:H(a,c,b){J d,1t=[];1B(a&&a!=d){d=a;J f=D.1E(a,c,b);a=f.t.1o(/^\\s*,\\s*/,"");1t=b?c=f.r:D.2R(1t,f.r)}I 1t},2q:H(t,o){G(1j t!="23")I[t];G(o&&o.16!=1&&o.16!=9)I[];o=o||S;J d=[o],2o=[],3S,Y;1B(t&&3S!=t){J r=[];3S=t;t=D.3k(t);J l=Q,3j=6L,m=3j.2D(t);G(m){Y=m[1].2r();R(J i=0;d[i];i++)R(J c=d[i].1x;c;c=c.2H)G(c.16==1&&(Y=="*"||c.Y.2r()==Y))r.1p(c);d=r;t=t.1o(3j,"");G(t.1h(" ")==0)6M;l=M}N{3j=/^([>+~])\\s*(\\w*)/i;G((m=3j.2D(t))!=U){r=[];J k={};Y=m[2].2r();m=m[1];R(J j=0,3i=d.K;j<3i;j++){J n=m=="~"||m=="+"?d[j].2H:d[j].1x;R(;n;n=n.2H)G(n.16==1){J g=D.L(n);G(m=="~"&&k[g])1X;G(!Y||n.Y.2r()==Y){G(m=="~")k[g]=M;r.1p(n)}G(m=="+")1X}}d=r;t=D.3k(t.1o(3j,""));l=M}}G(t&&!l){G(!t.1h(",")){G(o==d[0])d.4s();2o=D.2R(2o,d);r=d=[o];t=" "+t.6v(1,t.K)}N{J h=6J;J m=h.2D(t);G(m){m=[0,m[2],m[3],m[1]]}N{h=6I;m=h.2D(t)}m[2]=m[2].1o(/\\\\/g,"");J f=d[d.K-1];G(m[1]=="#"&&f&&f.61&&!D.4n(f)){J p=f.61(m[2]);G((D.14.1f||D.14.2G)&&p&&1j p.2v=="23"&&p.2v!=m[2])p=D(\'[@2v="\'+m[2]+\'"]\',f)[0];d=r=p&&(!m[3]||D.Y(p,m[3]))?[p]:[]}N{R(J i=0;d[i];i++){J a=m[1]=="#"&&m[3]?m[3]:m[1]!=""||m[0]==""?"*":m[2];G(a=="*"&&d[i].Y.3y()=="49")a="3n";r=D.2R(r,d[i].3H(a))}G(m[1]==".")r=D.5m(r,m[2]);G(m[1]=="#"){J e=[];R(J i=0;r[i];i++)G(r[i].4G("2v")==m[2]){e=[r[i]];1X}r=e}d=r}t=t.1o(h,"")}}G(t){J b=D.1E(t,r);d=r=b.r;t=D.3k(b.t)}}G(t)d=[];G(d&&o==d[0])d.4s();2o=D.2R(2o,d);I 2o},5m:H(r,m,a){m=" "+m+" ";J c=[];R(J i=0;r[i];i++){J b=(" "+r[i].1F+" ").1h(m)>=0;G(!a&&b||a&&!b)c.1p(r[i])}I c},1E:H(t,r,h){J d;1B(t&&t!=d){d=t;J p=D.6x,m;R(J i=0;p[i];i++){m=p[i].2D(t);G(m){t=t.8r(m[0].K);m[2]=m[2].1o(/\\\\/g,"");1X}}G(!m)1X;G(m[1]==":"&&m[2]=="4Y")r=62.11(m[3])?D.1E(m[3],r,M).r:D(r).4Y(m[3]);N G(m[1]==".")r=D.5m(r,m[2],h);N G(m[1]=="["){J g=[],O=m[3];R(J i=0,3i=r.K;i<3i;i++){J a=r[i],z=a[D.3X[m[2]]||m[2]];G(z==U||/5Q|4d|2W/.11(m[2]))z=D.1K(a,m[2])||\'\';G((O==""&&!!z||O=="="&&z==m[5]||O=="!="&&z!=m[5]||O=="^="&&z&&!z.1h(m[5])||O=="$="&&z.6v(z.K-m[5].K)==m[5]||(O=="*="||O=="~=")&&z.1h(m[5])>=0)^h)g.1p(a)}r=g}N G(m[1]==":"&&m[2]=="3a-4u"){J e={},g=[],11=/(-?)(\\d*)n((?:\\+|-)?\\d*)/.2D(m[3]=="6D"&&"2n"||m[3]=="6C"&&"2n+1"||!/\\D/.11(m[3])&&"8q+"+m[3]||m[3]),3o=(11[1]+(11[2]||1))-0,d=11[3]-0;R(J i=0,3i=r.K;i<3i;i++){J j=r[i],1d=j.1d,2v=D.L(1d);G(!e[2v]){J c=1;R(J n=1d.1x;n;n=n.2H)G(n.16==1)n.4q=c++;e[2v]=M}J b=Q;G(3o==0){G(j.4q==d)b=M}N G((j.4q-d)%3o==0&&(j.4q-d)/3o>=0)b=M;G(b^h)g.1p(j)}r=g}N{J f=D.6H[m[1]];G(1j f=="49")f=f[m[2]];G(1j f=="23")f=6u("Q||H(a,i){I "+f+";}");r=D.3C(r,H(a,i){I f(a,i,m,r)},h)}}I{r:r,t:t}},4S:H(b,c){J a=[],1t=b[c];1B(1t&&1t!=S){G(1t.16==1)a.1p(1t);1t=1t[c]}I a},3a:H(a,e,c,b){e=e||1;J d=0;R(;a;a=a[c])G(a.16==1&&++d==e)1X;I a},5v:H(n,a){J r=[];R(;n;n=n.2H){G(n.16==1&&n!=a)r.1p(n)}I r}});D.W={1e:H(f,i,g,e){G(f.16==3||f.16==8)I;G(D.14.1f&&f.4I)f=1b;G(!g.24)g.24=7.24++;G(e!=12){J h=g;g=7.3M(h,H(){I h.1w(7,19)});g.L=e}J j=D.L(f,"3w")||D.L(f,"3w",{}),1H=D.L(f,"1H")||D.L(f,"1H",H(){G(1j D!="12"&&!D.W.5k)I D.W.1H.1w(19.3L.T,19)});1H.T=f;D.P(i.1R(/\\s+/),H(c,b){J a=b.1R(".");b=a[0];g.O=a[1];J d=j[b];G(!d){d=j[b]={};G(!D.W.2t[b]||D.W.2t[b].4p.1k(f)===Q){G(f.3K)f.3K(b,1H,Q);N G(f.6t)f.6t("4o"+b,1H)}}d[g.24]=g;D.W.26[b]=M});f=U},24:1,26:{},21:H(e,h,f){G(e.16==3||e.16==8)I;J i=D.L(e,"3w"),1L,5i;G(i){G(h==12||(1j h=="23"&&h.8p(0)=="."))R(J g 1n i)7.21(e,g+(h||""));N{G(h.O){f=h.2y;h=h.O}D.P(h.1R(/\\s+/),H(b,a){J c=a.1R(".");a=c[0];G(i[a]){G(f)2U i[a][f.24];N R(f 1n i[a])G(!c[1]||i[a][f].O==c[1])2U i[a][f];R(1L 1n i[a])1X;G(!1L){G(!D.W.2t[a]||D.W.2t[a].4A.1k(e)===Q){G(e.6p)e.6p(a,D.L(e,"1H"),Q);N G(e.6n)e.6n("4o"+a,D.L(e,"1H"))}1L=U;2U i[a]}}})}R(1L 1n i)1X;G(!1L){J d=D.L(e,"1H");G(d)d.T=U;D.3b(e,"3w");D.3b(e,"1H")}}},1P:H(h,c,f,g,i){c=D.2d(c);G(h.1h("!")>=0){h=h.3s(0,-1);J a=M}G(!f){G(7.26[h])D("*").1e([1b,S]).1P(h,c)}N{G(f.16==3||f.16==8)I 12;J b,1L,17=D.1D(f[h]||U),W=!c[0]||!c[0].32;G(W){c.6h({O:h,2J:f,32:H(){},3J:H(){},4C:1z()});c[0][E]=M}c[0].O=h;G(a)c[0].6m=M;J d=D.L(f,"1H");G(d)b=d.1w(f,c);G((!17||(D.Y(f,\'a\')&&h=="4V"))&&f["4o"+h]&&f["4o"+h].1w(f,c)===Q)b=Q;G(W)c.4s();G(i&&D.1D(i)){1L=i.1w(f,b==U?c:c.7d(b));G(1L!==12)b=1L}G(17&&g!==Q&&b!==Q&&!(D.Y(f,\'a\')&&h=="4V")){7.5k=M;1U{f[h]()}1V(e){}}7.5k=Q}I b},1H:H(b){J a,1L,38,5f,4m;b=19[0]=D.W.6l(b||1b.W);38=b.O.1R(".");b.O=38[0];38=38[1];5f=!38&&!b.6m;4m=(D.L(7,"3w")||{})[b.O];R(J j 1n 4m){J c=4m[j];G(5f||c.O==38){b.2y=c;b.L=c.L;1L=c.1w(7,19);G(a!==Q)a=1L;G(1L===Q){b.32();b.3J()}}}I a},6l:H(b){G(b[E]==M)I b;J d=b;b={8o:d};J c="8n 8m 8l 8k 2s 8j 47 5d 6j 5E 8i L 8h 8g 4K 2y 5a 59 8e 8b 58 6f 8a 88 4k 87 86 84 6d 2J 4C 6c O 82 81 35".1R(" ");R(J i=c.K;i;i--)b[c[i]]=d[c[i]];b[E]=M;b.32=H(){G(d.32)d.32();d.80=Q};b.3J=H(){G(d.3J)d.3J();d.7Z=M};b.4C=b.4C||1z();G(!b.2J)b.2J=b.6d||S;G(b.2J.16==3)b.2J=b.2J.1d;G(!b.4k&&b.4K)b.4k=b.4K==b.2J?b.6c:b.4K;G(b.58==U&&b.5d!=U){J a=S.1C,1c=S.1c;b.58=b.5d+(a&&a.2e||1c&&1c.2e||0)-(a.6b||0);b.6f=b.6j+(a&&a.2c||1c&&1c.2c||0)-(a.6a||0)}G(!b.35&&((b.47||b.47===0)?b.47:b.5a))b.35=b.47||b.5a;G(!b.59&&b.5E)b.59=b.5E;G(!b.35&&b.2s)b.35=(b.2s&1?1:(b.2s&2?3:(b.2s&4?2:0)));I b},3M:H(a,b){b.24=a.24=a.24||b.24||7.24++;I b},2t:{27:{4p:H(){55();I},4A:H(){I}},3D:{4p:H(){G(D.14.1f)I Q;D(7).2O("53",D.W.2t.3D.2y);I M},4A:H(){G(D.14.1f)I Q;D(7).4e("53",D.W.2t.3D.2y);I M},2y:H(a){G(F(a,7))I M;a.O="3D";I D.W.1H.1w(7,19)}},3N:{4p:H(){G(D.14.1f)I Q;D(7).2O("51",D.W.2t.3N.2y);I M},4A:H(){G(D.14.1f)I Q;D(7).4e("51",D.W.2t.3N.2y);I M},2y:H(a){G(F(a,7))I M;a.O="3N";I D.W.1H.1w(7,19)}}}};D.17.1l({2O:H(c,a,b){I c=="4X"?7.2V(c,a,b):7.P(H(){D.W.1e(7,c,b||a,b&&a)})},2V:H(d,b,c){J e=D.W.3M(c||b,H(a){D(7).4e(a,e);I(c||b).1w(7,19)});I 7.P(H(){D.W.1e(7,d,e,c&&b)})},4e:H(a,b){I 7.P(H(){D.W.21(7,a,b)})},1P:H(c,a,b){I 7.P(H(){D.W.1P(c,a,7,M,b)})},5C:H(c,a,b){I 7[0]&&D.W.1P(c,a,7[0],Q,b)},2m:H(b){J c=19,i=1;1B(i<c.K)D.W.3M(b,c[i++]);I 7.4V(D.W.3M(b,H(a){7.4Z=(7.4Z||0)%i;a.32();I c[7.4Z++].1w(7,19)||Q}))},7X:H(a,b){I 7.2O(\'3D\',a).2O(\'3N\',b)},27:H(a){55();G(D.2Q)a.1k(S,D);N D.3A.1p(H(){I a.1k(7,D)});I 7}});D.1l({2Q:Q,3A:[],27:H(){G(!D.2Q){D.2Q=M;G(D.3A){D.P(D.3A,H(){7.1k(S)});D.3A=U}D(S).5C("27")}}});J x=Q;H 55(){G(x)I;x=M;G(S.3K&&!D.14.2G)S.3K("69",D.27,Q);G(D.14.1f&&1b==1S)(H(){G(D.2Q)I;1U{S.1C.7V("1A")}1V(3e){3B(19.3L,0);I}D.27()})();G(D.14.2G)S.3K("69",H(){G(D.2Q)I;R(J i=0;i<S.4W.K;i++)G(S.4W[i].3R){3B(19.3L,0);I}D.27()},Q);G(D.14.2k){J a;(H(){G(D.2Q)I;G(S.3f!="68"&&S.3f!="1J"){3B(19.3L,0);I}G(a===12)a=D("V, 7A[7U=7S]").K;G(S.4W.K!=a){3B(19.3L,0);I}D.27()})()}D.W.1e(1b,"43",D.27)}D.P(("7R,7Q,43,85,4y,4X,4V,7P,"+"7O,7N,89,53,51,7M,2A,"+"5o,7L,7K,8d,3e").1R(","),H(i,b){D.17[b]=H(a){I a?7.2O(b,a):7.1P(b)}});J F=H(a,c){J b=a.4k;1B(b&&b!=c)1U{b=b.1d}1V(3e){b=c}I b==c};D(1b).2O("4X",H(){D("*").1e(S).4e()});D.17.1l({67:D.17.43,43:H(g,d,c){G(1j g!=\'23\')I 7.67(g);J e=g.1h(" ");G(e>=0){J i=g.3s(e,g.K);g=g.3s(0,e)}c=c||H(){};J f="2P";G(d)G(D.1D(d)){c=d;d=U}N{d=D.3n(d);f="6g"}J h=7;D.3Y({1a:g,O:f,1O:"2K",L:d,1J:H(a,b){G(b=="1W"||b=="7J")h.2K(i?D("<1v/>").3v(a.4U.1o(/<1m(.|\\s)*?\\/1m>/g,"")).2q(i):a.4U);h.P(c,[a.4U,b,a])}});I 7},aL:H(){I D.3n(7.7I())},7I:H(){I 7.2l(H(){I D.Y(7,"3V")?D.2d(7.aH):7}).1E(H(){I 7.34&&!7.3R&&(7.4J||/2A|6y/i.11(7.Y)||/1r|1G|3Q/i.11(7.O))}).2l(H(i,c){J b=D(7).6e();I b==U?U:b.1q==2p?D.2l(b,H(a,i){I{34:c.34,2x:a}}):{34:c.34,2x:b}}).3p()}});D.P("7H,7G,7F,7D,7C,7B".1R(","),H(i,o){D.17[o]=H(f){I 7.2O(o,f)}});J B=1z();D.1l({3p:H(d,b,a,c){G(D.1D(b)){a=b;b=U}I D.3Y({O:"2P",1a:d,L:b,1W:a,1O:c})},aE:H(b,a){I D.3p(b,U,a,"1m")},aD:H(c,b,a){I D.3p(c,b,a,"3z")},aC:H(d,b,a,c){G(D.1D(b)){a=b;b={}}I D.3Y({O:"6g",1a:d,L:b,1W:a,1O:c})},aA:H(a){D.1l(D.60,a)},60:{1a:5Z.5Q,26:M,O:"2P",2T:0,7z:"4R/x-ax-3V-aw",7x:M,31:M,L:U,5Y:U,3Q:U,4Q:{2N:"4R/2N, 1r/2N",2K:"1r/2K",1m:"1r/4t, 4R/4t",3z:"4R/3z, 1r/4t",1r:"1r/as",4w:"*/*"}},4z:{},3Y:H(s){s=D.1l(M,s,D.1l(M,{},D.60,s));J g,2Z=/=\\?(&|$)/g,1u,L,O=s.O.2r();G(s.L&&s.7x&&1j s.L!="23")s.L=D.3n(s.L);G(s.1O=="4P"){G(O=="2P"){G(!s.1a.1I(2Z))s.1a+=(s.1a.1I(/\\?/)?"&":"?")+(s.4P||"7u")+"=?"}N G(!s.L||!s.L.1I(2Z))s.L=(s.L?s.L+"&":"")+(s.4P||"7u")+"=?";s.1O="3z"}G(s.1O=="3z"&&(s.L&&s.L.1I(2Z)||s.1a.1I(2Z))){g="4P"+B++;G(s.L)s.L=(s.L+"").1o(2Z,"="+g+"$1");s.1a=s.1a.1o(2Z,"="+g+"$1");s.1O="1m";1b[g]=H(a){L=a;1W();1J();1b[g]=12;1U{2U 1b[g]}1V(e){}G(i)i.37(h)}}G(s.1O=="1m"&&s.1Y==U)s.1Y=Q;G(s.1Y===Q&&O=="2P"){J j=1z();J k=s.1a.1o(/(\\?|&)3m=.*?(&|$)/,"$ap="+j+"$2");s.1a=k+((k==s.1a)?(s.1a.1I(/\\?/)?"&":"?")+"3m="+j:"")}G(s.L&&O=="2P"){s.1a+=(s.1a.1I(/\\?/)?"&":"?")+s.L;s.L=U}G(s.26&&!D.4O++)D.W.1P("7H");J n=/^(?:\\w+:)?\\/\\/([^\\/?#]+)/;G(s.1O=="1m"&&O=="2P"&&n.11(s.1a)&&n.2D(s.1a)[1]!=5Z.al){J i=S.3H("6w")[0];J h=S.3h("1m");h.4d=s.1a;G(s.7t)h.aj=s.7t;G(!g){J l=Q;h.ah=h.ag=H(){G(!l&&(!7.3f||7.3f=="68"||7.3f=="1J")){l=M;1W();1J();i.37(h)}}}i.3U(h);I 12}J m=Q;J c=1b.7s?2B 7s("ae.ac"):2B 7r();G(s.5Y)c.6R(O,s.1a,s.31,s.5Y,s.3Q);N c.6R(O,s.1a,s.31);1U{G(s.L)c.4B("ab-aa",s.7z);G(s.5S)c.4B("a9-5R-a8",D.4z[s.1a]||"a7, a6 a5 a4 5N:5N:5N a2");c.4B("X-9Z-9Y","7r");c.4B("9W",s.1O&&s.4Q[s.1O]?s.4Q[s.1O]+", */*":s.4Q.4w)}1V(e){}G(s.7m&&s.7m(c,s)===Q){s.26&&D.4O--;c.7l();I Q}G(s.26)D.W.1P("7B",[c,s]);J d=H(a){G(!m&&c&&(c.3f==4||a=="2T")){m=M;G(f){7k(f);f=U}1u=a=="2T"&&"2T"||!D.7j(c)&&"3e"||s.5S&&D.7h(c,s.1a)&&"7J"||"1W";G(1u=="1W"){1U{L=D.6X(c,s.1O,s.9S)}1V(e){1u="5J"}}G(1u=="1W"){J b;1U{b=c.5I("7g-5R")}1V(e){}G(s.5S&&b)D.4z[s.1a]=b;G(!g)1W()}N D.5H(s,c,1u);1J();G(s.31)c=U}};G(s.31){J f=4I(d,13);G(s.2T>0)3B(H(){G(c){c.7l();G(!m)d("2T")}},s.2T)}1U{c.9P(s.L)}1V(e){D.5H(s,c,U,e)}G(!s.31)d();H 1W(){G(s.1W)s.1W(L,1u);G(s.26)D.W.1P("7C",[c,s])}H 1J(){G(s.1J)s.1J(c,1u);G(s.26)D.W.1P("7F",[c,s]);G(s.26&&!--D.4O)D.W.1P("7G")}I c},5H:H(s,a,b,e){G(s.3e)s.3e(a,b,e);G(s.26)D.W.1P("7D",[a,s,e])},4O:0,7j:H(a){1U{I!a.1u&&5Z.9O=="5p:"||(a.1u>=7e&&a.1u<9N)||a.1u==7c||a.1u==9K||D.14.2k&&a.1u==12}1V(e){}I Q},7h:H(a,c){1U{J b=a.5I("7g-5R");I a.1u==7c||b==D.4z[c]||D.14.2k&&a.1u==12}1V(e){}I Q},6X:H(a,c,b){J d=a.5I("9J-O"),2N=c=="2N"||!c&&d&&d.1h("2N")>=0,L=2N?a.9I:a.4U;G(2N&&L.1C.2j=="5J")7p"5J";G(b)L=b(L,c);G(c=="1m")D.5u(L);G(c=="3z")L=6u("("+L+")");I L},3n:H(a){J s=[];G(a.1q==2p||a.5w)D.P(a,H(){s.1p(3u(7.34)+"="+3u(7.2x))});N R(J j 1n a)G(a[j]&&a[j].1q==2p)D.P(a[j],H(){s.1p(3u(j)+"="+3u(7))});N s.1p(3u(j)+"="+3u(D.1D(a[j])?a[j]():a[j]));I s.6s("&").1o(/%20/g,"+")}});D.17.1l({1N:H(c,b){I c?7.2g({1Z:"1N",2h:"1N",1y:"1N"},c,b):7.1E(":1G").P(H(){7.V.18=7.5D||"";G(D.1g(7,"18")=="2F"){J a=D("<"+7.2j+" />").6P("1c");7.V.18=a.1g("18");G(7.V.18=="2F")7.V.18="3I";a.21()}}).3l()},1M:H(b,a){I b?7.2g({1Z:"1M",2h:"1M",1y:"1M"},b,a):7.1E(":4j").P(H(){7.5D=7.5D||D.1g(7,"18");7.V.18="2F"}).3l()},78:D.17.2m,2m:H(a,b){I D.1D(a)&&D.1D(b)?7.78.1w(7,19):a?7.2g({1Z:"2m",2h:"2m",1y:"2m"},a,b):7.P(H(){D(7)[D(7).3F(":1G")?"1N":"1M"]()})},9G:H(b,a){I 7.2g({1Z:"1N"},b,a)},9F:H(b,a){I 7.2g({1Z:"1M"},b,a)},9E:H(b,a){I 7.2g({1Z:"2m"},b,a)},9D:H(b,a){I 7.2g({1y:"1N"},b,a)},9M:H(b,a){I 7.2g({1y:"1M"},b,a)},9C:H(c,a,b){I 7.2g({1y:a},c,b)},2g:H(k,j,i,g){J h=D.77(j,i,g);I 7[h.36===Q?"P":"36"](H(){G(7.16!=1)I Q;J f=D.1l({},h),p,1G=D(7).3F(":1G"),46=7;R(p 1n k){G(k[p]=="1M"&&1G||k[p]=="1N"&&!1G)I f.1J.1k(7);G(p=="1Z"||p=="2h"){f.18=D.1g(7,"18");f.33=7.V.33}}G(f.33!=U)7.V.33="1G";f.45=D.1l({},k);D.P(k,H(c,a){J e=2B D.28(46,f,c);G(/2m|1N|1M/.11(a))e[a=="2m"?1G?"1N":"1M":a](k);N{J b=a.6r().1I(/^([+-]=)?([\\d+-.]+)(.*)$/),2b=e.1t(M)||0;G(b){J d=3d(b[2]),2M=b[3]||"2X";G(2M!="2X"){46.V[c]=(d||1)+2M;2b=((d||1)/e.1t(M))*2b;46.V[c]=2b+2M}G(b[1])d=((b[1]=="-="?-1:1)*d)+2b;e.3G(2b,d,2M)}N e.3G(2b,a,"")}});I M})},36:H(a,b){G(D.1D(a)||(a&&a.1q==2p)){b=a;a="28"}G(!a||(1j a=="23"&&!b))I A(7[0],a);I 7.P(H(){G(b.1q==2p)A(7,a,b);N{A(7,a).1p(b);G(A(7,a).K==1)b.1k(7)}})},9X:H(b,c){J a=D.3O;G(b)7.36([]);7.P(H(){R(J i=a.K-1;i>=0;i--)G(a[i].T==7){G(c)a[i](M);a.7n(i,1)}});G(!c)7.5A();I 7}});J A=H(b,c,a){G(b){c=c||"28";J q=D.L(b,c+"36");G(!q||a)q=D.L(b,c+"36",D.2d(a))}I q};D.17.5A=H(a){a=a||"28";I 7.P(H(){J q=A(7,a);q.4s();G(q.K)q[0].1k(7)})};D.1l({77:H(b,a,c){J d=b&&b.1q==a0?b:{1J:c||!c&&a||D.1D(b)&&b,2u:b,41:c&&a||a&&a.1q!=9t&&a};d.2u=(d.2u&&d.2u.1q==4L?d.2u:D.28.5K[d.2u])||D.28.5K.74;d.5M=d.1J;d.1J=H(){G(d.36!==Q)D(7).5A();G(D.1D(d.5M))d.5M.1k(7)};I d},41:{73:H(p,n,b,a){I b+a*p},5P:H(p,n,b,a){I((-29.9r(p*29.9q)/2)+0.5)*a+b}},3O:[],48:U,28:H(b,c,a){7.15=c;7.T=b;7.1i=a;G(!c.3Z)c.3Z={}}});D.28.44={4D:H(){G(7.15.2Y)7.15.2Y.1k(7.T,7.1z,7);(D.28.2Y[7.1i]||D.28.2Y.4w)(7);G(7.1i=="1Z"||7.1i=="2h")7.T.V.18="3I"},1t:H(a){G(7.T[7.1i]!=U&&7.T.V[7.1i]==U)I 7.T[7.1i];J r=3d(D.1g(7.T,7.1i,a));I r&&r>-9p?r:3d(D.2a(7.T,7.1i))||0},3G:H(c,b,d){7.5V=1z();7.2b=c;7.3l=b;7.2M=d||7.2M||"2X";7.1z=7.2b;7.2S=7.4N=0;7.4D();J e=7;H t(a){I e.2Y(a)}t.T=7.T;D.3O.1p(t);G(D.48==U){D.48=4I(H(){J a=D.3O;R(J i=0;i<a.K;i++)G(!a[i]())a.7n(i--,1);G(!a.K){7k(D.48);D.48=U}},13)}},1N:H(){7.15.3Z[7.1i]=D.1K(7.T.V,7.1i);7.15.1N=M;7.3G(0,7.1t());G(7.1i=="2h"||7.1i=="1Z")7.T.V[7.1i]="9m";D(7.T).1N()},1M:H(){7.15.3Z[7.1i]=D.1K(7.T.V,7.1i);7.15.1M=M;7.3G(7.1t(),0)},2Y:H(a){J t=1z();G(a||t>7.15.2u+7.5V){7.1z=7.3l;7.2S=7.4N=1;7.4D();7.15.45[7.1i]=M;J b=M;R(J i 1n 7.15.45)G(7.15.45[i]!==M)b=Q;G(b){G(7.15.18!=U){7.T.V.33=7.15.33;7.T.V.18=7.15.18;G(D.1g(7.T,"18")=="2F")7.T.V.18="3I"}G(7.15.1M)7.T.V.18="2F";G(7.15.1M||7.15.1N)R(J p 1n 7.15.45)D.1K(7.T.V,p,7.15.3Z[p])}G(b)7.15.1J.1k(7.T);I Q}N{J n=t-7.5V;7.4N=n/7.15.2u;7.2S=D.41[7.15.41||(D.41.5P?"5P":"73")](7.4N,n,0,1,7.15.2u);7.1z=7.2b+((7.3l-7.2b)*7.2S);7.4D()}I M}};D.1l(D.28,{5K:{9l:9j,9i:7e,74:9g},2Y:{2e:H(a){a.T.2e=a.1z},2c:H(a){a.T.2c=a.1z},1y:H(a){D.1K(a.T.V,"1y",a.1z)},4w:H(a){a.T.V[a.1i]=a.1z+a.2M}}});D.17.2i=H(){J b=0,1S=0,T=7[0],3q;G(T)ao(D.14){J d=T.1d,4a=T,1s=T.1s,1Q=T.2z,5U=2k&&3r(5B)<9c&&!/9a/i.11(v),1g=D.2a,3c=1g(T,"30")=="3c";G(T.7y){J c=T.7y();1e(c.1A+29.2f(1Q.1C.2e,1Q.1c.2e),c.1S+29.2f(1Q.1C.2c,1Q.1c.2c));1e(-1Q.1C.6b,-1Q.1C.6a)}N{1e(T.5X,T.5W);1B(1s){1e(1s.5X,1s.5W);G(42&&!/^t(98|d|h)$/i.11(1s.2j)||2k&&!5U)2C(1s);G(!3c&&1g(1s,"30")=="3c")3c=M;4a=/^1c$/i.11(1s.2j)?4a:1s;1s=1s.1s}1B(d&&d.2j&&!/^1c|2K$/i.11(d.2j)){G(!/^96|1T.*$/i.11(1g(d,"18")))1e(-d.2e,-d.2c);G(42&&1g(d,"33")!="4j")2C(d);d=d.1d}G((5U&&(3c||1g(4a,"30")=="5x"))||(42&&1g(4a,"30")!="5x"))1e(-1Q.1c.5X,-1Q.1c.5W);G(3c)1e(29.2f(1Q.1C.2e,1Q.1c.2e),29.2f(1Q.1C.2c,1Q.1c.2c))}3q={1S:1S,1A:b}}H 2C(a){1e(D.2a(a,"6V",M),D.2a(a,"6U",M))}H 1e(l,t){b+=3r(l,10)||0;1S+=3r(t,10)||0}I 3q};D.17.1l({30:H(){J a=0,1S=0,3q;G(7[0]){J b=7.1s(),2i=7.2i(),4c=/^1c|2K$/i.11(b[0].2j)?{1S:0,1A:0}:b.2i();2i.1S-=25(7,\'94\');2i.1A-=25(7,\'aF\');4c.1S+=25(b,\'6U\');4c.1A+=25(b,\'6V\');3q={1S:2i.1S-4c.1S,1A:2i.1A-4c.1A}}I 3q},1s:H(){J a=7[0].1s;1B(a&&(!/^1c|2K$/i.11(a.2j)&&D.1g(a,\'30\')==\'93\'))a=a.1s;I D(a)}});D.P([\'5e\',\'5G\'],H(i,b){J c=\'4y\'+b;D.17[c]=H(a){G(!7[0])I;I a!=12?7.P(H(){7==1b||7==S?1b.92(!i?a:D(1b).2e(),i?a:D(1b).2c()):7[c]=a}):7[0]==1b||7[0]==S?46[i?\'aI\':\'aJ\']||D.71&&S.1C[c]||S.1c[c]:7[0][c]}});D.P(["6N","4b"],H(i,b){J c=i?"5e":"5G",4f=i?"6k":"6i";D.17["5s"+b]=H(){I 7[b.3y()]()+25(7,"57"+c)+25(7,"57"+4f)};D.17["90"+b]=H(a){I 7["5s"+b]()+25(7,"2C"+c+"4b")+25(7,"2C"+4f+"4b")+(a?25(7,"6S"+c)+25(7,"6S"+4f):0)}})})();',62,669,'|||||||this|||||||||||||||||||||||||||||||||||if|function|return|var|length|data|true|else|type|each|false|for|document|elem|null|style|event||nodeName|||test|undefined||browser|options|nodeType|fn|display|arguments|url|window|body|parentNode|add|msie|css|indexOf|prop|typeof|call|extend|script|in|replace|push|constructor|text|offsetParent|cur|status|div|apply|firstChild|opacity|now|left|while|documentElement|isFunction|filter|className|hidden|handle|match|complete|attr|ret|hide|show|dataType|trigger|doc|split|top|table|try|catch|success|break|cache|height||remove|tbody|string|guid|num|global|ready|fx|Math|curCSS|start|scrollTop|makeArray|scrollLeft|max|animate|width|offset|tagName|safari|map|toggle||done|Array|find|toUpperCase|button|special|duration|id|copy|value|handler|ownerDocument|select|new|border|exec|stack|none|opera|nextSibling|pushStack|target|html|inArray|unit|xml|bind|GET|isReady|merge|pos|timeout|delete|one|selected|px|step|jsre|position|async|preventDefault|overflow|name|which|queue|removeChild|namespace|insertBefore|nth|removeData|fixed|parseFloat|error|readyState|multiFilter|createElement|rl|re|trim|end|_|param|first|get|results|parseInt|slice|childNodes|encodeURIComponent|append|events|elems|toLowerCase|json|readyList|setTimeout|grep|mouseenter|color|is|custom|getElementsByTagName|block|stopPropagation|addEventListener|callee|proxy|mouseleave|timers|defaultView|password|disabled|last|has|appendChild|form|domManip|props|ajax|orig|set|easing|mozilla|load|prototype|curAnim|self|charCode|timerId|object|offsetChild|Width|parentOffset|src|unbind|br|currentStyle|clean|float|visible|relatedTarget|previousSibling|handlers|isXMLDoc|on|setup|nodeIndex|unique|shift|javascript|child|RegExp|_default|deep|scroll|lastModified|teardown|setRequestHeader|timeStamp|update|empty|tr|getAttribute|innerHTML|setInterval|checked|fromElement|Number|jQuery|state|active|jsonp|accepts|application|dir|input|responseText|click|styleSheets|unload|not|lastToggle|outline|mouseout|getPropertyValue|mouseover|getComputedStyle|bindReady|String|padding|pageX|metaKey|keyCode|getWH|andSelf|clientX|Left|all|visibility|container|index|init|triggered|removeAttribute|classFilter|prevObject|submit|file|after|windowData|inner|client|globalEval|sibling|jquery|absolute|clone|wrapAll|dequeue|version|triggerHandler|oldblock|ctrlKey|createTextNode|Top|handleError|getResponseHeader|parsererror|speeds|checkbox|old|00|radio|swing|href|Modified|ifModified|lastChild|safari2|startTime|offsetTop|offsetLeft|username|location|ajaxSettings|getElementById|isSimple|values|selectedIndex|runtimeStyle|rsLeft|_load|loaded|DOMContentLoaded|clientTop|clientLeft|toElement|srcElement|val|pageY|POST|unshift|Bottom|clientY|Right|fix|exclusive|detachEvent|cloneNode|removeEventListener|swap|toString|join|attachEvent|eval|substr|head|parse|textarea|reset|image|zoom|odd|even|before|prepend|exclude|expr|quickClass|quickID|uuid|quickChild|continue|Height|textContent|appendTo|contents|open|margin|evalScript|borderTopWidth|borderLeftWidth|parent|httpData|setArray|CSS1Compat|compatMode|boxModel|cssFloat|linear|def|webkit|nodeValue|speed|_toggle|eq|100|replaceWith|304|concat|200|alpha|Last|httpNotModified|getAttributeNode|httpSuccess|clearInterval|abort|beforeSend|splice|styleFloat|throw|colgroup|XMLHttpRequest|ActiveXObject|scriptCharset|callback|fieldset|multiple|processData|getBoundingClientRect|contentType|link|ajaxSend|ajaxSuccess|ajaxError|col|ajaxComplete|ajaxStop|ajaxStart|serializeArray|notmodified|keypress|keydown|change|mouseup|mousedown|dblclick|focus|blur|stylesheet|hasClass|rel|doScroll|black|hover|solid|cancelBubble|returnValue|wheelDelta|view|round|shiftKey|resize|screenY|screenX|relatedNode|mousemove|prevValue|originalTarget|offsetHeight|keyup|newValue|offsetWidth|eventPhase|detail|currentTarget|cancelable|bubbles|attrName|attrChange|altKey|originalEvent|charAt|0n|substring|animated|header|noConflict|line|enabled|innerText|contains|only|weight|font|gt|lt|uFFFF|u0128|size|417|Boolean|Date|toggleClass|removeClass|addClass|removeAttr|replaceAll|insertAfter|prependTo|wrap|contentWindow|contentDocument|iframe|children|siblings|prevAll|wrapInner|nextAll|outer|prev|scrollTo|static|marginTop|next|inline|parents|able|cellSpacing|adobeair|cellspacing|522|maxLength|maxlength|readOnly|400|readonly|fast|600|class|slow|1px|htmlFor|reverse|10000|PI|cos|compatible|Function|setData|ie|ra|it|rv|getData|userAgent|navigator|fadeTo|fadeIn|slideToggle|slideUp|slideDown|ig|responseXML|content|1223|NaN|fadeOut|300|protocol|send|setAttribute|option|dataFilter|cssText|changed|be|Accept|stop|With|Requested|Object|can|GMT|property|1970|Jan|01|Thu|Since|If|Type|Content|XMLHTTP|th|Microsoft|td|onreadystatechange|onload|cap|charset|colg|host|tfoot|specified|with|1_|thead|leg|plain|attributes|opt|embed|urlencoded|www|area|hr|ajaxSetup|meta|post|getJSON|getScript|marginLeft|img|elements|pageYOffset|pageXOffset|abbr|serialize|pixelLeft'.split('|'),0,{})) |
\ No newline at end of file |
Property changes on: trunk/extensions/MetavidWiki/skins/mv_embed/jquery/plugins/Jcrop/js/jquery.pack.js |
___________________________________________________________________ |
Added: svn:executable |
1 | 13 | + * |
Index: trunk/extensions/MetavidWiki/skins/mv_embed/jquery/plugins/Jcrop/js/jquery.Jcrop.min.js |
— | — | @@ -0,0 +1,148 @@ |
| 2 | +/** |
| 3 | + * Jcrop v.0.9.5 (minimized) |
| 4 | + * (c) 2008 Kelly Hallman and DeepLiquid.com |
| 5 | + * More information: http://deepliquid.com/content/Jcrop.html |
| 6 | + * Released under MIT License - this header must remain with code |
| 7 | + */ |
| 8 | + |
| 9 | + |
| 10 | +$.Jcrop=function(obj,opt) |
| 11 | +{var obj=obj,opt=opt;if(typeof(obj)!=='object')obj=$(obj)[0];if(typeof(opt)!=='object')opt={};if(!('trackDocument'in opt)) |
| 12 | +opt.trackDocument=$.browser.msie?false:true;if(!('keySupport'in opt)) |
| 13 | +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,watchShift:false,minSelect:[0,0],maxSize:[0,0],minSize:[0,0],onChange:function(){},onSelect:function(){}};var options=defaults;setOptions(opt);var $img=$(obj).css({position:'absolute'});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});if(options.addClass)$div.addClass(options.addClass);$img.wrap($div);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=$('<div />').addClass(cssClass('tracker')).width(boundx+(bound*2)).height(boundy+(bound*2)).css({position:'absolute',top:px(-bound),left:px(-bound),zIndex:290,opacity:0}).mousedown(newSelection);var xscale,yscale;var docOffset=getPos(obj),btndown,aspectLock,lastcurs,dimmed,animating,shift_down;if('trueSize'in options) |
| 14 | +{xscale=options.trueSize[0]/boundx;yscale=options.trueSize[1]/boundy;} |
| 15 | +var Coords=function() |
| 16 | +{var x1=0,y1=0,x2=0,y2=0,ox,oy;function setPressed(pos) |
| 17 | +{var pos=rebound(pos);x2=x1=pos[0];y2=y1=pos[1];};function setCurrent(pos) |
| 18 | +{var pos=rebound(pos);ox=pos[0]-x2;oy=pos[1]-y2;x2=pos[0];y2=pos[1];};function getOffset() |
| 19 | +{return[ox,oy];};function moveOffset(offset) |
| 20 | +{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) |
| 21 | +{var c=getFixed();switch(ord) |
| 22 | +{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() |
| 23 | +{if(!options.aspectRatio&&!aspectLock)return getRect();var aspect=options.aspectRatio?options.aspectRatio:aspectLock,min=options.minSize,max=options.maxSize,rw=x2-x1,rh=y2-y1,rwa=Math.abs(rw),rha=Math.abs(rh),real_ratio=rwa/rha,xx,yy;if(real_ratio<aspect) |
| 24 | +{yy=y2;w=rha*aspect;xx=rw<0?x1-w:w+x1;if(xx<0) |
| 25 | +{xx=0;h=Math.abs((xx-x1)/aspect);yy=rh<0?y1-h:h+y1;} |
| 26 | +else if(xx>boundx) |
| 27 | +{xx=boundx;h=Math.abs((xx-x1)/aspect);yy=rh<0?y1-h:h+y1;}} |
| 28 | +else |
| 29 | +{xx=x2;h=rwa/aspect;yy=rh<0?y1-h:y1+h;if(yy<0) |
| 30 | +{yy=0;w=Math.abs((yy-y1)*aspect);xx=rw<0?x1-w:w+x1;} |
| 31 | +else if(yy>boundy) |
| 32 | +{yy=boundy;w=Math.abs(yy-y1)*aspect;xx=rw<0?x1-w:w+x1;}} |
| 33 | +return last=makeObj(flipCoords(x1,y1,xx,yy));};function rebound(p) |
| 34 | +{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) |
| 35 | +{var xa=x1,xb=x2,ya=y1,yb=y2;if(x2<x1) |
| 36 | +{xa=x2;xb=x1;} |
| 37 | +if(y2<y1) |
| 38 | +{ya=y2;yb=y1;} |
| 39 | +return[Math.round(xa),Math.round(ya),Math.round(xb),Math.round(yb)];};function getRect() |
| 40 | +{var xsize=x2-x1;var ysize=y2-y1;if(xlimit&&(Math.abs(xsize)>xlimit)) |
| 41 | +x2=(xsize>0)?(x1+xlimit):(x1-xlimit);if(ylimit&&(Math.abs(ysize)>ylimit)) |
| 42 | +y2=(ysize>0)?(y1+ylimit):(y1-ylimit);if(ymin&&(Math.abs(ysize)<ymin)) |
| 43 | +y2=(ysize>0)?(y1+ymin):(y1-ymin);if(xmin&&(Math.abs(xsize)<xmin)) |
| 44 | +x2=(xsize>0)?(x1+xmin):(x1-xmin);if(x1<0){x2-=x1;x1-=x1;} |
| 45 | +if(y1<0){y2-=y1;y1-=y1;} |
| 46 | +if(x2<0){x1-=x2;x2-=x2;} |
| 47 | +if(y2<0){y1-=y2;y2-=y2;} |
| 48 | +if(x2>boundx){var delta=x2-boundx;x1-=delta;x2-=delta;} |
| 49 | +if(y2>boundy){var delta=y2-boundy;y1-=delta;y2-=delta;} |
| 50 | +if(x1>boundx){var delta=x1-boundy;y2-=delta;y1-=delta;} |
| 51 | +if(y1>boundy){var delta=y1-boundy;y2-=delta;y1-=delta;} |
| 52 | +return makeObj(flipCoords(x1,y1,x2,y2));};function makeObj(a) |
| 53 | +{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() |
| 54 | +{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')};} |
| 55 | +if(options.dragEdges){handle.t=insertDragbar('n');handle.b=insertDragbar('s');handle.r=insertDragbar('e');handle.l=insertDragbar('w');} |
| 56 | +options.sideHandles&&createHandles(['n','s','e','w']);options.cornerHandles&&createHandles(['sw','nw','ne','se']);function insertBorder(type) |
| 57 | +{var jq=$('<div />').css({position:'absolute',opacity:options.borderOpacity}).addClass(cssClass(type));$img_holder.append(jq);return jq;};function dragDiv(ord,zi) |
| 58 | +{var jq=$('<div />').mousedown(createDragger(ord)).css({cursor:ord+'-resize',position:'absolute',zIndex:zi});$hdl_holder.append(jq);return jq;};function insertHandle(ord) |
| 59 | +{return dragDiv(ord,hdep++).css({top:px(-hhs+1),left:px(-hhs+1),opacity:options.handleOpacity}).addClass(cssClass('handle'));};function insertDragbar(ord) |
| 60 | +{var s=options.handleSize,o=hhs,h=s,w=s,t=o,l=o;switch(ord) |
| 61 | +{case'n':case's':w=pct(100);break;case'e':case'w':h=pct(100);break;} |
| 62 | +return dragDiv(ord,hdep++).width(w).height(h).css({top:px(-t+1),left:px(-l+1)});};function createHandles(li) |
| 63 | +{for(i in li)handle[li[i]]=insertHandle(li[i]);};function moveHandles(c) |
| 64 | +{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) |
| 65 | +{$img2.css({top:px(-y),left:px(-x)});$sel.css({top:px(y),left:px(x)});};function resize(w,h) |
| 66 | +{$sel.width(w).height(h);};function refresh() |
| 67 | +{var p=Coords.getFixed();Coords.setPressed([p.x,p.y]);Coords.setCurrent([p.x2,p.y2]);};function updateVisible() |
| 68 | +{if(awake)return update();};function update() |
| 69 | +{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() |
| 70 | +{$sel.show();$img.css('opacity',options.bgOpacity);awake=true;};function release() |
| 71 | +{disableHandles();$sel.hide();$img.css('opacity',1);awake=false;};function hide() |
| 72 | +{release();$img.css('opacity',1);awake=false;};function enableHandles() |
| 73 | +{seehandles=true;moveHandles(Coords.getFixed());$hdl_holder.show();};function disableHandles() |
| 74 | +{seehandles=false;$hdl_holder.hide();};function animMode(v) |
| 75 | +{(animating=v)?disableHandles():enableHandles();};function done() |
| 76 | +{var c=Coords.getFixed();animMode(false);refresh();};disableHandles();$img_holder.append |
| 77 | +($('<div />').addClass(cssClass('tracker')).mousedown(createDragger('move')).css({cursor:'move',position:'absolute',zIndex:360,opacity:0}));return{updateVisible:updateVisible,update:update,release:release,show:show,hide:hide,enableHandles:enableHandles,disableHandles:disableHandles,animMode:animMode,done:done};}();var Tracker=function() |
| 78 | +{var onMove=function(){},onDone=function(){},trackDoc=options.trackDocument;if(!trackDoc) |
| 79 | +{$trk.mousemove(trackMove).mouseup(trackUp).mouseout(trackUp);} |
| 80 | +function toFront() |
| 81 | +{if(trackDoc) |
| 82 | +{$(document).mousemove(trackMove).mouseup(trackUp);} |
| 83 | +$trk.css({zIndex:450});} |
| 84 | +function toBack() |
| 85 | +{if(trackDoc) |
| 86 | +{$(document).unbind('mousemove',trackMove).unbind('mouseup',trackUp);} |
| 87 | +$trk.css({zIndex:290});} |
| 88 | +function trackMove(e) |
| 89 | +{onMove(mouseAbs(e));};function trackUp(e) |
| 90 | +{e.preventDefault();e.stopPropagation();if(btndown) |
| 91 | +{btndown=false;onDone(mouseAbs(e));options.onSelect(unscale(Coords.getFixed()));toBack();onMove=function(){};onDone=function(){};} |
| 92 | +return false;};function activateHandlers(move,done) |
| 93 | +{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() |
| 94 | +{var $keymgr=$('<input type="radio" />').css({position:'absolute',left:'-30px'}).keydown(parseKey).keyup(watchShift).blur(onBlur),$keywrap=$('<div />').css({position:'absolute',overflow:'hidden'}).append($keymgr);function watchKeys() |
| 95 | +{if(options.keySupport) |
| 96 | +{$keymgr.show();$keymgr.focus();}};function onBlur(e) |
| 97 | +{$keymgr.hide();};function watchShift(e) |
| 98 | +{if(!options.watchShift)return;var init_shift=shift_down,fc;shift_down=e.shiftKey?true:false;if(init_shift!=shift_down){if(shift_down&&btndown){fc=Coords.getFixed();aspectLock=fc.w/fc.h;}else aspectLock=0;Selection.update();} |
| 99 | +e.stopPropagation();e.preventDefault();return false;};function doNudge(e,x,y) |
| 100 | +{Coords.moveOffset([x,y]);Selection.updateVisible();e.preventDefault();e.stopPropagation();};function parseKey(e) |
| 101 | +{if(e.ctrlKey)return true;watchShift(e);var nudge=shift_down?10:1;switch(e.keyCode) |
| 102 | +{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;} |
| 103 | +return false;};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) |
| 104 | +{var pos=$(obj).offset();return[pos.left,pos.top];};function mouseAbs(e) |
| 105 | +{return[(e.pageX-docOffset[0]),(e.pageY-docOffset[1])];};function myCursor(type) |
| 106 | +{if(type!=lastcurs) |
| 107 | +{Tracker.setCursor(type);lastcurs=type;}};function startDragMode(mode,pos) |
| 108 | +{docOffset=getPos(obj);Tracker.setCursor(mode=='move'?mode:mode+'-resize');if(mode=='move') |
| 109 | +return Tracker.activateHandlers(createMover(pos),doneSelect);var fc=Coords.getFixed();Coords.setPressed(Coords.getCorner(oppLockCorner(mode)));Tracker.activateHandlers(dragmodeHandler(mode,fc),doneSelect);};function dragmodeHandler(mode,f) |
| 110 | +{return function(pos){if(!options.aspectRatio&&!aspectLock)switch(mode) |
| 111 | +{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;} |
| 112 | +else switch(mode) |
| 113 | +{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;} |
| 114 | +Coords.setCurrent(pos);Selection.update();};};function createMover(pos) |
| 115 | +{var lloc=pos;KeyManager.watchKeys();return function(pos) |
| 116 | +{Coords.moveOffset([pos[0]-lloc[0],pos[1]-lloc[1]]);lloc=pos;Selection.update();};};function oppLockCorner(ord) |
| 117 | +{switch(ord) |
| 118 | +{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) |
| 119 | +{return function(e){btndown=true;startDragMode(ord,mouseAbs(e));e.stopPropagation();e.preventDefault();return false;};};function presize($obj,w,h) |
| 120 | +{var nw=$obj.width(),nh=$obj.height();if((nw>w)&&w>0) |
| 121 | +{nw=w;nh=(w/$obj.width())*$obj.height();} |
| 122 | +if((nh>h)&&h>0) |
| 123 | +{nh=h;nw=(h/$obj.height())*$obj.width();} |
| 124 | +xscale=$obj.width()/nw;yscale=$obj.height()/nh;$obj.width(nw).height(nh);};function unscale(c) |
| 125 | +{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) |
| 126 | +{var c=Coords.getFixed();if(c.w>options.minSelect[0]&&c.h>options.minSelect[1]) |
| 127 | +{Selection.enableHandles();Selection.done();} |
| 128 | +else |
| 129 | +{Selection.release();} |
| 130 | +Tracker.setCursor('crosshair');};function newSelection(e) |
| 131 | +{btndown=true;docOffset=getPos(obj);Selection.release();Selection.disableHandles();myCursor('crosshair');Coords.setPressed(mouseAbs(e));Tracker.activateHandlers(selectDrag,doneSelect);KeyManager.watchKeys();e.stopPropagation();e.preventDefault();return false;};function selectDrag(pos) |
| 132 | +{Coords.setCurrent(pos);Selection.update();};function animateTo(a) |
| 133 | +{var x1=a[0],y1=a[1],x2=a[2],y2=a[3];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() |
| 134 | +{return function() |
| 135 | +{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;setSelect(animat);};}();function animateStart() |
| 136 | +{window.setTimeout(animator,interv);};animateStart();};function setSelect(l) |
| 137 | +{Coords.setPressed([l[0],l[1]]);Coords.setCurrent([l[2],l[3]]);Selection.update();};function setOptions(opt) |
| 138 | +{if(typeof(opt)!='object')opt={};options=$.extend(options,opt);if(typeof(options.onChange)!=='function') |
| 139 | +options.onChange=function(){};if(typeof(options.onSelect)!=='function') |
| 140 | +options.onSelect=function(){};};function tellSelect() |
| 141 | +{return unscale(Coords.getFixed());};function tellScaled() |
| 142 | +{return Coords.getFixed();};function setOptionsNew(opt) |
| 143 | +{setOptions(opt);if('setSelect'in opt){setSelect(opt.setSelect);Selection.done();}};if(typeof(opt)!='object')opt={};if('setSelect'in opt){setSelect(opt.setSelect);Selection.done();} |
| 144 | +var xlimit=options.maxSize[0]||0;var ylimit=options.maxSize[1]||0;var xmin=options.minSize[0]||0;var ymin=options.minSize[1]||0;Tracker.setCursor('crosshair');return{animateTo:animateTo,setSelect:setSelect,setOptions:setOptionsNew,tellSelect:tellSelect,tellScaled:tellScaled};};$.fn.Jcrop=function(options) |
| 145 | +{function attachWhenDone(from) |
| 146 | +{var loadsrc=options.useImg||from.src;var img=new Image();var from=from;img.onload=function(){$(from).hide().after(img);from.Jcrop=$.Jcrop(img,options);};img.src=loadsrc;};if(typeof(options)!=='object')options={};this.each(function() |
| 147 | +{if('Jcrop'in this) |
| 148 | +{if(options=='api')return this.Jcrop;else this.Jcrop.setOptions(options);} |
| 149 | +else attachWhenDone(this);});return this;}; |
\ No newline at end of file |