Skip to content

Commit

Permalink
Remove unecessary console
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurvasconcelos committed Feb 16, 2018
1 parent 6bbedc8 commit 126724e
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ import VueCBSC from 'vue-cbsc';
Vue.use(VueCBSC);
```

## Usage
## Usage [![Edit Vue CBSC Example](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/xr02lz040w)

```javascript
new Vue({
Expand Down
1 change: 0 additions & 1 deletion dist/vue-cbsc.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,6 @@ function plugin(Vue, options = {}) {
return this.$options._shadeBlendConvert(amount * -1, color);
},
lighten(color, amount) {
console.log('ssss');
this.$options._validadeNumber(amount, 0, 1, 'Amount');
this.$options._validadeString(color, false, 'Color');
return this.$options._shadeBlendConvert(amount, color);
Expand Down
2 changes: 1 addition & 1 deletion dist/vue-cbsc.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,6 @@ export default function plugin (Vue, options = {}) {
return this.$options._shadeBlendConvert(amount * -1, color);
},
lighten(color, amount) {
console.log('ssss');
this.$options._validadeNumber(amount, 0, 1, 'Amount');
this.$options._validadeString(color, false, 'Color');
return this.$options._shadeBlendConvert(amount, color);
Expand Down

0 comments on commit 126724e

Please sign in to comment.