diff --git a/IPython/html/static/notebook/js/celltoolbar.js b/IPython/html/static/notebook/js/celltoolbar.js
index 308525f20..0cb6a76b9 100644
--- a/IPython/html/static/notebook/js/celltoolbar.js
+++ b/IPython/html/static/notebook/js/celltoolbar.js
@@ -367,13 +367,13 @@ define([
return function(div, cell, celltoolbar) {
var button_container = $(div);
- var chkb = $('').attr('type', 'text');
+ var text = $('').attr('type', 'text');
var lbl = $('').append($('').text(name));
- lbl.append(chkb);
- chkb.attr("value", getter(cell));
+ lbl.append(text);
+ text.attr("value", getter(cell));
- chkb.keyup(function(){
- setter(cell, chkb.val());
+ text.keyup(function(){
+ setter(cell, text.val());
});
button_container.append($('').append(lbl));
};