/
home
/
desid573
/
public_html
/
eway
/
pdd
/
app
/
webroot
/
admin
/
plugins
/
flot
/
/home/desid573/public_html/eway/pdd/app/webroot/admin/plugins/flot
mkdir
upload
Name
Size
Mode
Actions
jquery.colorhelpers.js
6151
0644
edit
dl
rm
jquery.colorhelpers.min.js
3134
0644
edit
dl
rm
jquery.flot.all.min.js
57913
0644
edit
dl
rm
jquery.flot.canvas.js
9599
0644
edit
dl
rm
jquery.flot.canvas.min.js
3953
0644
edit
dl
rm
jquery.flot.categories.js
6033
0644
edit
dl
rm
jquery.flot.categories.min.js
2598
0644
edit
dl
rm
jquery.flot.crosshair.js
5419
0644
edit
dl
rm
jquery.flot.crosshair.min.js
2162
0644
edit
dl
rm
jquery.flot.errorbars.js
12614
0644
edit
dl
rm
jquery.flot.errorbars.min.js
5453
0644
edit
dl
rm
jquery.flot.fillbetween.js
5257
0644
edit
dl
rm
jquery.flot.fillbetween.min.js
2309
0644
edit
dl
rm
jquery.flot.image.js
7360
0644
edit
dl
rm
jquery.flot.image.min.js
2683
0644
edit
dl
rm
jquery.flot.js
122971
0644
edit
dl
rm
jquery.flot.min.js
52966
0644
edit
dl
rm
jquery.flot.navigate.js
14216
0644
edit
dl
rm
jquery.flot.navigate.min.js
6568
0644
edit
dl
rm
jquery.flot.pie.js
23809
0644
edit
dl
rm
jquery.flot.pie.min.js
12183
0644
edit
dl
rm
jquery.flot.resize.js
3314
0644
edit
dl
rm
jquery.flot.resize.min.js
2344
0644
edit
dl
rm
jquery.flot.selection.js
13141
0644
edit
dl
rm
jquery.flot.selection.min.js
5271
0644
edit
dl
rm
jquery.flot.stack.js
7090
0644
edit
dl
rm
jquery.flot.stack.min.js
2465
0644
edit
dl
rm
jquery.flot.symbol.js
2505
0644
edit
dl
rm
jquery.flot.symbol.min.js
1187
0644
edit
dl
rm
jquery.flot.threshold.js
4480
0644
edit
dl
rm
jquery.flot.threshold.min.js
1840
0644
edit
dl
rm
jquery.flot.time.js
11768
0644
edit
dl
rm
jquery.flot.time.min.js
6891
0644
edit
dl
rm
LICENSE.txt
1069
0644
edit
dl
rm
Edit:
/home/desid573/public_html/eway/pdd/app/webroot/admin/plugins/flot/jquery.flot.resize.js
(3314B)
/* Flot plugin for automatically redrawing plots as the placeholder resizes. Copyright (c) 2007-2014 IOLA and Ole Laursen. Licensed under the MIT license. It works by listening for changes on the placeholder div (through the jQuery resize event plugin) - if the size changes, it will redraw the plot. There are no options. If you need to disable the plugin for some plots, you can just fix the size of their placeholders. */ /* Inline dependency: * jQuery resize event - v1.1 - 3/14/2010 * http://benalman.com/projects/jquery-resize-plugin/ * * Copyright (c) 2010 "Cowboy" Ben Alman * Dual licensed under the MIT and GPL licenses. * http://benalman.com/about/license/ */ (function($,e,t){"$:nomunge";var i=[],n=$.resize=$.extend($.resize,{}),a,r=false,s="setTimeout",u="resize",m=u+"-special-event",o="pendingDelay",l="activeDelay",f="throttleWindow";n[o]=200;n[l]=20;n[f]=true;$.event.special[u]={setup:function(){if(!n[f]&&this[s]){return false}var e=$(this);i.push(this);e.data(m,{w:e.width(),h:e.height()});if(i.length===1){a=t;h()}},teardown:function(){if(!n[f]&&this[s]){return false}var e=$(this);for(var t=i.length-1;t>=0;t--){if(i[t]==this){i.splice(t,1);break}}e.removeData(m);if(!i.length){if(r){cancelAnimationFrame(a)}else{clearTimeout(a)}a=null}},add:function(e){if(!n[f]&&this[s]){return false}var i;function a(e,n,a){var r=$(this),s=r.data(m)||{};s.w=n!==t?n:r.width();s.h=a!==t?a:r.height();i.apply(this,arguments)}if($.isFunction(e)){i=e;return a}else{i=e.handler;e.handler=a}}};function h(t){if(r===true){r=t||1}for(var s=i.length-1;s>=0;s--){var l=$(i[s]);if(l[0]==e||l.is(":visible")){var f=l.width(),c=l.height(),d=l.data(m);if(d&&(f!==d.w||c!==d.h)){l.trigger(u,[d.w=f,d.h=c]);r=t||true}}else{d=l.data(m);d.w=0;d.h=0}}if(a!==null){if(r&&(t==null||t-r<1e3)){a=e.requestAnimationFrame(h)}else{a=setTimeout(h,n[o]);r=false}}}if(!e.requestAnimationFrame){e.requestAnimationFrame=function(){return e.webkitRequestAnimationFrame||e.mozRequestAnimationFrame||e.oRequestAnimationFrame||e.msRequestAnimationFrame||function(t,i){return e.setTimeout(function(){t((new Date).getTime())},n[l])}}()}if(!e.cancelAnimationFrame){e.cancelAnimationFrame=function(){return e.webkitCancelRequestAnimationFrame||e.mozCancelRequestAnimationFrame||e.oCancelRequestAnimationFrame||e.msCancelRequestAnimationFrame||clearTimeout}()}})(jQuery,this); (function ($) { var options = { }; // no options function init(plot) { function onResize() { var placeholder = plot.getPlaceholder(); // somebody might have hidden us and we can't plot // when we don't have the dimensions if (placeholder.width() == 0 || placeholder.height() == 0) return; plot.resize(); plot.setupGrid(); plot.draw(); } function bindEvents(plot, eventHolder) { plot.getPlaceholder().resize(onResize); } function shutdown(plot, eventHolder) { plot.getPlaceholder().unbind("resize", onResize); } plot.hooks.bindEvents.push(bindEvents); plot.hooks.shutdown.push(shutdown); } $.plot.plugins.push({ init: init, options: options, name: 'resize', version: '1.0' }); })(jQuery);
Save
cmd:
run