mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-21 04:10:17 +08:00
fix typo in method name
This commit is contained in:
parent
cb1bb62272
commit
af90cd8c62
@ -74,7 +74,7 @@ $(document).ready(function () {
|
||||
|
||||
// bound the upload method to the on change of the file select list
|
||||
$("#alternate_upload").change(function (event){
|
||||
IPython.notebook_list.handelFilesUpload(event,'form');
|
||||
IPython.notebook_list.handleFilesUpload(event,'form');
|
||||
});
|
||||
|
||||
// set hash on tab click
|
||||
|
@ -47,12 +47,12 @@ var IPython = (function (IPython) {
|
||||
return false;
|
||||
});
|
||||
this.element.bind('drop', function(event){
|
||||
that.handelFilesUpload(event,'drop');
|
||||
that.handleFilesUpload(event,'drop');
|
||||
return false;
|
||||
});
|
||||
};
|
||||
|
||||
NotebookList.prototype.handelFilesUpload = function(event, dropOrForm) {
|
||||
NotebookList.prototype.handleFilesUpload = function(event, dropOrForm) {
|
||||
var that = this;
|
||||
var files;
|
||||
if(dropOrForm =='drop'){
|
||||
|
Loading…
Reference in New Issue
Block a user