]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Remove extraneous console logs
authorKevin Ball <kmball11@gmail.com>
Wed, 24 May 2017 04:36:06 +0000 (21:36 -0700)
committerKevin Ball <kmball11@gmail.com>
Wed, 24 May 2017 04:36:06 +0000 (21:36 -0700)
js/foundation.dropdown.js

index ffe7492e0d0847f94dc8d8b479ebfc899d3421ab..c5493d06b7e08fcf7ee435c1e77d198f03965c99 100644 (file)
@@ -151,7 +151,6 @@ class Dropdown extends Plugin {
     if(this._alignmentsExhausted(this.position)) {
       this.position = nextItem(this.position, POSITIONS);
       this.alignment = ALIGNMENTS[this.position][0];
-      console.log('alignments exhausted, repositioned to ', this.position, this.alignment);
     } else {
       this._realign();
     }
@@ -167,7 +166,6 @@ class Dropdown extends Plugin {
   _realign() {
     this._addTriedPosition(this.position, this.alignment)
     this.alignment = nextItem(this.alignment, ALIGNMENTS[this.position])
-    console.log('realigning to', this.position, this.alignment);
   }
 
   _addTriedPosition(position, alignment) {