Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(970)

Side by Side Diff: third_party/flot/jquery.flot.resize.min.js

Issue 547063003: Remove the unmaintained performance monitor. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Attempt to fix GN Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 /* Flot plugin for automatically redrawing plots as the placeholder resizes.
2
3 Copyright (c) 2007-2013 IOLA and Ole Laursen.
4 Licensed under the MIT license.
5
6 It works by listening for changes on the placeholder div (through the jQuery
7 resize event plugin) - if the size changes, it will redraw the plot.
8
9 There are no options. If you need to disable the plugin for some plots, you
10 can just fix the size of their placeholders.
11
12 *//* Inline dependency:
13 * jQuery resize event - v1.1 - 3/14/2010
14 * http://benalman.com/projects/jquery-resize-plugin/
15 *
16 * Copyright (c) 2010 "Cowboy" Ben Alman
17 * Dual licensed under the MIT and GPL licenses.
18 * http://benalman.com/about/license/
19 */(function(e,t,n){function c(){s=t[o](function(){r.each(function(){var t=e(thi s),n=t.width(),r=t.height(),i=e.data(this,a);(n!==i.w||r!==i.h)&&t.trigger(u,[i. w=n,i.h=r])}),c()},i[f])}var r=e([]),i=e.resize=e.extend(e.resize,{}),s,o="setTi meout",u="resize",a=u+"-special-event",f="delay",l="throttleWindow";i[f]=250,i[l ]=!0,e.event.special[u]={setup:function(){if(!i[l]&&this[o])return!1;var t=e(thi s);r=r.add(t),e.data(this,a,{w:t.width(),h:t.height()}),r.length===1&&c()},teard own:function(){if(!i[l]&&this[o])return!1;var t=e(this);r=r.not(t),t.removeData( a),r.length||clearTimeout(s)},add:function(t){function s(t,i,s){var o=e(this),u= e.data(this,a);u.w=i!==n?i:o.width(),u.h=s!==n?s:o.height(),r.apply(this,argumen ts)}if(!i[l]&&this[o])return!1;var r;if(e.isFunction(t))return r=t,s;r=t.handler ,t.handler=s}}})(jQuery,this),function(e){function n(e){function t(){var t=e.get Placeholder();if(t.width()==0||t.height()==0)return;e.resize(),e.setupGrid(),e.d raw()}function n(e,n){e.getPlaceholder().resize(t)}function r(e,n){e.getPlacehol der().unbind("resize",t)}e.hooks.bindEvents.push(n),e.hooks.shutdown.push(r)}var t={};e.plot.plugins.push({init:n,options:t,name:"resize",version:"1.0"})}(jQuer y);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698