Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
stop console logging
  • Loading branch information
simeydotme committed Nov 1, 2022
commit 21981e674ecbee4ad36dd87128830c61d464d8ef
4 changes: 2 additions & 2 deletions src/lib/stores/orientation.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ let firstReading = true;
let baseOrientation = getRawOrientation();

export const resetBaseOrientation = () => {
console.log("Resetting Base Orientation");
// console.log("Resetting Base Orientation");
firstReading = true;
baseOrientation = getRawOrientation();
}
Expand All @@ -52,7 +52,7 @@ export const orientation = readable( getOrientationObject(), function start( set

return function stop() {
window.removeEventListener("deviceorientation", handleOrientation, true);
console.log("Stopping Orientation Tracking");
// console.log("Stopping Orientation Tracking");
}

});