remove debug lines

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2020-10-21 09:46:37 +01:00
parent 9348c8a23b
commit 9cd146aa33

View file

@ -103,7 +103,6 @@ export default class AppsDrawer extends React.Component {
onResizeStop: () => { onResizeStop: () => {
this._resizeContainer.classList.remove("mx_AppsDrawer_resizing"); this._resizeContainer.classList.remove("mx_AppsDrawer_resizing");
// persist to localStorage // persist to localStorage
console.log("@@ _saveResizerPreferences");
localStorage.setItem(this._getStorageKey(), JSON.stringify([ localStorage.setItem(this._getStorageKey(), JSON.stringify([
this.state.apps.map(app => app.id), this.state.apps.map(app => app.id),
...this.state.apps.slice(1).map((_, i) => this.resizer.forHandleAt(i).size), ...this.state.apps.slice(1).map((_, i) => this.resizer.forHandleAt(i).size),
@ -117,7 +116,6 @@ export default class AppsDrawer extends React.Component {
} }
_collectResizer = (ref) => { _collectResizer = (ref) => {
console.log("@@ _collectResizer");
if (this._resizeContainer) { if (this._resizeContainer) {
this.resizer.detach(); this.resizer.detach();
} }
@ -149,7 +147,6 @@ export default class AppsDrawer extends React.Component {
}; };
_loadResizerPreferences = () => { _loadResizerPreferences = () => {
console.log("@@ _loadResizerPreferences");
try { try {
const [[...lastIds], ...sizes] = JSON.parse(localStorage.getItem(this._getStorageKey())); const [[...lastIds], ...sizes] = JSON.parse(localStorage.getItem(this._getStorageKey()));
// Every app was included in the last split, reuse the last sizes // Every app was included in the last split, reuse the last sizes
@ -168,7 +165,6 @@ export default class AppsDrawer extends React.Component {
} }
if (this.state.apps) { if (this.state.apps) {
console.log("@@ full relaxation");
const distributors = this.resizer.getDistributors(); const distributors = this.resizer.getDistributors();
distributors.forEach(d => d.item.clearSize()); distributors.forEach(d => d.item.clearSize());
distributors.forEach(d => d.start()); distributors.forEach(d => d.start());