Skip to content

Commit

Permalink
remove console logs (#301)
Browse files Browse the repository at this point in the history
  • Loading branch information
thescientist13 authored Mar 15, 2020
1 parent 28bbd71 commit b77ce09
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
7 changes: 3 additions & 4 deletions www/components/shelf/shelf.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,10 @@ class shelf extends LitElement {
}

render() {
console.log('render()', this.shelfList);
return html`
<style>
${css}
</style>
<style>
${css}
</style>
<div>
<ul>
${this.renderList()}
Expand Down
6 changes: 0 additions & 6 deletions www/templates/page-template.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ class PageTemplate extends LitElement {
// based on path, display selected list
const url = window.location.pathname;
let list = [];

console.log('url', url);

if (url.indexOf('/about') >= 0) {
list = await import(/* webpackChunkName: 'about' */ '../components/shelf/about.json').then(({ default: data }) => data);
Expand All @@ -45,11 +43,7 @@ class PageTemplate extends LitElement {
list = await import(/* webpackChunkName: 'plugins' */ '../components/shelf/plugins.json').then(({ default: data }) => data);
}

console.log('list', list);

this.shelfList = list;

console.log('this.shelfList', this.shelfList);
}

render() {
Expand Down

0 comments on commit b77ce09

Please sign in to comment.