]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Delete comma, add semicolon 5076/head
authorOliverKK <oliver.kinderknecht@googlemail.com>
Tue, 29 Apr 2014 06:53:09 +0000 (08:53 +0200)
committerOliverKK <oliver.kinderknecht@googlemail.com>
Tue, 29 Apr 2014 06:53:09 +0000 (08:53 +0200)
Line 10 -> delete comma,
Line 55 -> add semicolon

js/foundation/foundation.offcanvas.js

index 2bb92dff11fefae7eb1489fc3deaf3ea16dbdc3a..c5cc9fb96de90ea79f85124bf7e9c580c02298cf 100644 (file)
@@ -7,7 +7,7 @@
     version : '5.2.2',
 
     settings : {
-      close_on_click: true,
+      close_on_click: true
     },
 
     init : function (scope, method, options) {
@@ -52,7 +52,7 @@
     },
 
     get_settings: function(e) {
-      var offcanvas  = this.S(e.target).closest('[' + this.attr_name() + ']')
+      var offcanvas  = this.S(e.target).closest('[' + this.attr_name() + ']');
       return offcanvas.data(this.attr_name(true) + '-init') || this.settings;
     },