Skip to content

Commit

Permalink
rm unnecessary console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
PanJiaChen committed Sep 6, 2018
1 parent fa54b92 commit c58bce6
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/components/Tinymce/components/editorImage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ export default {
this.$message('请等待所有图片上传成功 或 出现了网络问题,请刷新页面重新上传!')
return
}
console.log(arr)
this.$emit('successCBK', arr)
this.listObj = {}
this.fileList = []
Expand Down
1 change: 0 additions & 1 deletion src/store/modules/tagsView.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ const tagsView = {
for (const [i, v] of state.visitedViews.entries()) {
if (v.path === view.path) {
state.visitedViews.splice(i, 1)
console.log('1')
break
}
}
Expand Down
1 change: 0 additions & 1 deletion src/utils/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@ export function scrollTo(element, to, duration) {
const difference = to - element.scrollTop
const perTick = (difference / duration) * 10
setTimeout(() => {
console.log(new Date())
element.scrollTop = element.scrollTop + perTick
if (element.scrollTop === to) return
scrollTo(element, to, duration - 10)
Expand Down

0 comments on commit c58bce6

Please sign in to comment.