DEV: Remove debug statement in explorer-container.js

This commit is contained in:
Rishabh 2019-02-05 16:42:07 +05:30
parent 6a69daf39a
commit 0ed53f7c5e
1 changed files with 0 additions and 1 deletions

View File

@ -35,7 +35,6 @@ export default Ember.Component.extend({
const mousemove = function(e) {
const diff = self.get("startY") - e.screenY;
const newHeight = self.get("startSize") - diff;
//Em.Logger.debug("new height", newHeight);
$targets.height(newHeight);
self.appEvents.trigger("ace:resize");
};