Skip to content

Commit

Permalink
Merge pull request #220 from minrk/restart-kernel
Browse files Browse the repository at this point in the history
Fix scope on restart buttons
  • Loading branch information
takluyver committed Jul 21, 2015
2 parents 0a93cc6 + 715e87a commit ecdb109
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notebook/static/notebook/js/notebook.js
Original file line number Diff line number Diff line change
Expand Up @@ -1637,13 +1637,13 @@ define(function (require) {
that.clear_all_output();
that.kernel.restart();
},
},
"Restart" : {
"class" : "btn-warning",
"click" : function() {
that.kernel.restart();
}
},
}
}
});
};
Expand Down

0 comments on commit ecdb109

Please sign in to comment.