Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Dev: Remove console.log
  • Loading branch information
olleharstedt committed May 3, 2016
1 parent e89c54b commit 29c2c6a
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions styles/Sea_Green/scripts/sidemenu.js
Expand Up @@ -91,7 +91,6 @@ $(document).ready(function(){
setTimeout(function(){
sideBodyHeight = sideBody.height();
targetHeight = $target.height();
console.log('targetHeight: '+targetHeight);
//alert(sidemenuHeight);
if( sideBodyHeight < ( targetHeight + $correction ) )
{
Expand All @@ -104,7 +103,6 @@ $(document).ready(function(){
* Close sidemenu
*/
jQuery(document).on('click', '#chevronClose.opened', function(){
console.log('#chevronClose.opened');
disableChevrons();

// Move the side menu
Expand Down Expand Up @@ -146,7 +144,6 @@ $(document).ready(function(){
* Unstreched side menu
*/
jQuery(document).on('click', '#chevronClose.stretched', function(){
console.log('#chevronClose.stretched');
disableChevrons();
sideMenu.animate({
width: 300,
Expand All @@ -170,7 +167,6 @@ $(document).ready(function(){
* Show the side menu
*/
jQuery(document).on('click', '#chevronStretch.closed', function(){
console.log('#chevronStretch.closed');
disableChevrons();

sideMenu.animate($.extend({
Expand Down Expand Up @@ -205,7 +201,6 @@ $(document).ready(function(){
* Stretch the side menu
*/
jQuery(document).on('click', '#chevronStretch.opened', function(){
console.log('#chevronStretch.opened');
disableChevrons();

sideMenu.animate({
Expand Down Expand Up @@ -236,7 +231,6 @@ $(document).ready(function(){
* Stretch the accordion
*/
jQuery(document).on('click', '.handleAccordion.opened', function(){
console.log('stretched accordion');
// Disable this feature for RTL for now
if (rtl) {
return;
Expand Down Expand Up @@ -361,7 +355,6 @@ $(document).ready(function(){

var windowswidth = window.innerWidth;
var sideBodyWidth = sideBody.width();
console.log('sideBodyWidth start: '+sideBodyWidth);
$( window ).resize(function() {
//console.log('sideBodyWidth before: '+sideBodyWidth);
//console.log( windowswidth - window.innerWidth);
Expand Down

0 comments on commit 29c2c6a

Please sign in to comment.