From 01d43290af12c9d5ade12e62ae05b64da009e16c Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Mon, 21 Jul 2014 14:08:28 -0700 Subject: [PATCH] Remove unused style() function --- IPython/html/static/notebook/js/kernelselector.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/IPython/html/static/notebook/js/kernelselector.js b/IPython/html/static/notebook/js/kernelselector.js index c9f3f86d2..ab85176c4 100644 --- a/IPython/html/static/notebook/js/kernelselector.js +++ b/IPython/html/static/notebook/js/kernelselector.js @@ -14,7 +14,6 @@ define([ this.kernelspecs = {}; if (this.selector !== undefined) { this.element = $(selector); - this.style(); this.request_kernelspecs(); } @@ -22,9 +21,6 @@ define([ IPython.kernelselector = this; }; - KernelSelector.prototype.style = function() { - }; - KernelSelector.prototype.request_kernelspecs = function() { var url = utils.url_join_encode(this.notebook.base_url, 'api/kernelspecs'); $.ajax(url, {success: $.proxy(this.got_kernelspecs, this)});