From 9d8f250b3214f69f7e1fa9255addd59a9a494037 2013-03-22 17:54:36 From: MinRK Date: 2013-03-22 17:54:36 Subject: [PATCH] restore default behavior for automatic cluster size the up/down buttons still work, but it doesn't populate everything with 2, which was wrong. --- diff --git a/IPython/frontend/html/notebook/static/js/clusterlist.js b/IPython/frontend/html/notebook/static/js/clusterlist.js index ed8ff61..b31c1eb 100644 --- a/IPython/frontend/html/notebook/static/js/clusterlist.js +++ b/IPython/frontend/html/notebook/static/js/clusterlist.js @@ -114,7 +114,6 @@ var IPython = (function (IPython) { var engines_col = $('').addClass('engines_col'); var input = $('').attr('type','number') .attr('min',1) - .attr('value',2) .attr('size',3) .addClass('engine_num_input'); engines_col.append(input);