Skip to content

Commit

Permalink
remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
easylogic committed Mar 14, 2018
1 parent 1a927fd commit 8c0497a
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions addon/codemirror-colorpicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -3896,8 +3896,6 @@ var ChromeColorControl = function (_EventMachin) {

var h = huePos.x / this.$hueContainer.width() * 360;

console.log(h);

return { h: h };
}
}, {
Expand Down Expand Up @@ -5163,8 +5161,6 @@ var ChromeDevtool = function (_EventMachin) {
colorObj = color.parse(c);
format = format || colorObj.type;

console.log(colorObj);

this.setCurrentFormat(format);

var hsv = this.getHSV(colorObj);
Expand Down
2 changes: 0 additions & 2 deletions src/colorpicker/type/ChromeDevtool/ChromeColorControl.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,6 @@ export default class ChromeColorControl extends EventMachin {

var h = (huePos.x / this.$hueContainer.width()) * 360;

console.log(h);

return { h } ;
}

Expand Down
2 changes: 0 additions & 2 deletions src/colorpicker/type/ChromeDevtool/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,6 @@ export default class ChromeDevtool extends EventMachin {
initColor(newColor, format) {
let c = newColor || "#FF0000", colorObj = Color.parse(c);
format = format || colorObj.type;

console.log(colorObj);

this.setCurrentFormat(format);

Expand Down

0 comments on commit 8c0497a

Please sign in to comment.