/*! * jQuery Scalable * http://sbp.so/scalable * Copyright 2012, Sean B. Palmer. Apache License 2.0 */(function(a){"use strict",a.widget("ui.scalable",{options:{arrow:!1},_create:function(){function c(){b._wrapper.hasClass("ui-resizable-resizing")?b._hide_after_drag=!1:b._bar.show()}function d(){b._wrapper.hasClass("ui-resizable-resizing")?b._hide_after_drag=!0:b._bar.hide()}var b=this;b.element.resizable({aspectRatio:!0,autoHide:!0,handles:"e",minHeight:48,minWidth:72,create:function(a,c){b._original_width=b.element.width(),b._original_height=b.element.height()},stop:function(a,c){b._hide_after_drag&&(b._bar.hide(),b._hide_after_drag=!1)}}),b._wrapper=b.element.parent().css("position","relative"),b._original_wwidth=b._wrapper.width(),b._original_wheight=b._wrapper.height(),b._handle=a(".ui-resizable-e",b._wrapper).wrap("
"),b._bar=b._handle.parent(),b.options.arrow&&(b._arrow=b.options.arrow),b._handle.css({background:"url("+b._arrow+") no-repeat",position:"absolute",cursor:"e-resize",top:"0",right:"0"}).width(72).height(48),b._bar.addClass("ui-scalable-bar").css({background:"rgba(204, 204, 204, .2)",position:"absolute",cursor:"pointer",top:"0",left:"0",width:"100%",height:"48px"}).click(a.proxy(b.reset,b)).hover(c,d).hide(),b.element.hover(c,d),b._bar.children().click(function(){return!1})},_arrow:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MiIgaGVpZ2h0PSI0OCI+PGxpbmVhckdyYWRpZW50IGlkPSJhIj48c3RvcCBzdG9wLWNvbG9yPSIjY2NjIiBvZmZzZXQ9IjAiLz48c3RvcCBzdG9wLWNvbG9yPSIjZWVlIiBvZmZzZXQ9IjEiLz48L2xpbmVhckdyYWRpZW50PjxwYXRoIGQ9Im0xMS41LDIzLjUgMTYsMTAgMCwtOCAxNiwwIDAsOCAxNiwtMTAgLTE2LC0xMCAwLDggLTE2LDAgMCwtOHoiIHN0eWxlPSJmaWxsOnVybCgjYSk7c3Ryb2tlOiM1NTUiLz48L3N2Zz4=",reset:function(){var a=this;a._wrapper.width(a._original_wwidth).height(a._original_wheight),a.element.width(a._original_width).height(a._original_height)},destroy:function(){a.Widget.prototype.destroy.call(this),this.element.resizable("destroy")}})})(jQuery);