mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-28 19:29:15 -04:00
Cleanup code (jshint)
This commit is contained in:
parent
88971c1462
commit
3d4b6a9a4a
4 changed files with 69 additions and 68 deletions
|
@ -52,8 +52,8 @@ $.Class("SliderHandleUI",
|
|||
},
|
||||
_mouseInit: function () {
|
||||
this.element.on("mousedown.sliderhandle", null, this, function(event) {
|
||||
console.log("sliderhandleui - mousedown")
|
||||
})
|
||||
console.log("sliderhandleui - mousedown");
|
||||
});
|
||||
},
|
||||
}
|
||||
);
|
||||
|
@ -115,7 +115,7 @@ $.Class("SliderUI",
|
|||
this.render();
|
||||
},
|
||||
createHandle: function (value, type) {
|
||||
console.log("createHandle(%d, %s)", value, type)
|
||||
console.log("createHandle(%d, %s)", value, type);
|
||||
var handle = new SliderHandleUI(this, value, type);
|
||||
this.handles.push(handle);
|
||||
this.element.append(handle.element);
|
||||
|
@ -160,10 +160,10 @@ $.Class("SliderUI",
|
|||
|
||||
});
|
||||
} else {
|
||||
console.log("We shouldn't be here!")
|
||||
console.log("We shouldn't be here!");
|
||||
console.log(event.target);
|
||||
}
|
||||
})
|
||||
});
|
||||
},
|
||||
}
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue