Skip to content

Commit

Permalink
remove debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
andistuder committed Sep 6, 2017
1 parent c6b65f3 commit 62dbd26
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 10 deletions.
2 changes: 0 additions & 2 deletions client.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,6 @@ function setupRadioPlayer() {
// let endTime = moment().add(7, 'seconds');
let startTime = moment.utc("2017-09-07 17:00"); // yyyy-mm-dd
let endTime = moment.utc("2017-09-07 18:00"); // yyyy-mm-dd
console.log(startTime.toDate());
console.log(endTime.toDate());

let autoplayed = false; // Only autoplay once (don't want to autoplay after it's been actively paused.
function handleRadioTextDisplay() {
Expand Down
2 changes: 1 addition & 1 deletion public/js/app.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/app.min.js.map

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion react/Collage/Collage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ class Collage extends React.Component {
}

renderCanvas() {
console.log("rendering canvas");
let that = this;
$()
this.canvas = new fabric.Canvas('collage-canvas');
Expand Down
2 changes: 1 addition & 1 deletion react/PhotoGallery/PhotoGallery.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class PhotoGallery extends React.Component {
}

componentDidMount() {
console.log(this.props.gallery);
// console.log(this.props.gallery);
}

render() {
Expand Down
1 change: 0 additions & 1 deletion react/PhotoGallery/photoGalleryActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ module.exports = {
},

openGallery: (newPhotoIndex) => {
console.log(newPhotoIndex);
return {
type: types.OPEN_GALLERY,
newPhotoIndex: newPhotoIndex,
Expand Down
2 changes: 1 addition & 1 deletion react/RadioPlayerMobile/RadioPlayerMobile.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class RadioPlayerMobile extends React.Component {
}

componentDidMount() {
console.log("Mounting mobile radio player.");
// console.log("Mounting mobile radio player.");
}

componentWillUnmount() {
Expand Down
2 changes: 0 additions & 2 deletions react/react-index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -179,14 +179,12 @@ class App extends React.Component {
const isMobile = width <= 767;

if (isMobile) {
console.log("isMobile");
return (
<Provider store={store} >
<MobileApp> </MobileApp>
</Provider>
)
} else {
console.log("isDesktop");
return (
<Provider store={store} >
<DesktopApp> </DesktopApp>
Expand Down

0 comments on commit 62dbd26

Please sign in to comment.