Merge pull request #5156 from ivanov/fix-5155

fix IPython typo, closes #5155
Min RK 12 years ago
commit 8d03aab3dd

@ -31,13 +31,13 @@ var IPython = (function (IPython) {
LoginWidget.prototype.bind_events = function () {
var that = this;
this.element.find("button#logout").click(function () {
window.location = IPythin.utils.url_join_encode(
window.location = IPython.utils.url_join_encode(
that.base_url,
"logout"
);
});
this.element.find("button#login").click(function () {
window.location = IPythin.utils.url_join_encode(
window.location = IPython.utils.url_join_encode(
that.base_url,
"login"
);

Loading…
Cancel
Save