Skip to content

Commit

Permalink
#284: removed debug comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Mulholland committed Apr 24, 2018
1 parent 3342d06 commit 31ac9a8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/renderer/components/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -404,8 +404,8 @@ export default {
calculatePanelDiff: function() {
this.panelWidthDiff = this.widthMain1 - this.widthInner1
this.panelHeightDiff = this.heightMain1 - this.heightInner1
console.log(`panel diff: ${this.panelWidthDiff}`)
console.log(`panel diff: ${this.panelHeightDiff}`)
// console.log(`panel diff: ${this.panelWidthDiff}`)
// console.log(`panel diff: ${this.panelHeightDiff}`)
},
testSideMain: function() {
// TODO : refactor this as an event that plays once only rather than a continuous condition-check
Expand All @@ -414,7 +414,7 @@ export default {
this.saveHotPanelDimensions()
this.calculatePanelDiff()
}
console.log(`diff: ${this.panelWidthDiff}`)
// console.log(`diff: ${this.panelWidthDiff}`)
let panelWidthDiff = this.panelWidthDiff
window.setTimeout(function() {
document.querySelectorAll('.ht_master .wtHolder').forEach((el) => {
Expand All @@ -432,7 +432,7 @@ export default {
this.saveHotPanelDimensions()
this.calculatePanelDiff()
}
console.log(`diff: ${this.panelHeightDiff}`)
// console.log(`diff: ${this.panelHeightDiff}`)
let panelHeightDiff = this.panelHeightDiff
window.setTimeout(function() {
document.querySelectorAll('.ht_master .wtHolder').forEach((el) => {
Expand Down

0 comments on commit 31ac9a8

Please sign in to comment.