Browse Source

Update data selector to match the name of the plugin

Abdullah Almsaeed 8 years ago
parent
commit
469e9cd136
1 changed files with 3 additions and 4 deletions
  1. 3 4
      build/js/PushMenu.js

+ 3 - 4
build/js/PushMenu.js

@@ -2,9 +2,8 @@
  * ==========
  * Adds the push menu functionality to the sidebar.
  *
- * @type Function
  * @usage: $('.btn').pushMenu(options)
- *          or add [data-toggle="offcanvas"] to any toggle button
+ *          or add [data-toggle="push-menu"] to any toggle button
  *          Pass any option as data-option="value"
  */
 +function ($) {
@@ -24,7 +23,7 @@
     mainSidebar   : '.main-sidebar',
     contentWrapper: '.content-wrapper',
     searchInput   : '.sidebar-form .form-control',
-    button        : '[data-toggle="offcanvas"]',
+    button        : '[data-toggle="push-menu"]',
     mini          : '.sidebar-mini',
     expanded      : '.sidebar-expanded-on-hover',
     layoutFixed   : '.fixed'
@@ -172,6 +171,6 @@
     Plugin.call($(this), 'toggle')
   })
   $(window).on('load', function () {
-    Plugin.call($(Selector.button), {})
+    Plugin.call($(Selector.button))
   })
 }(jQuery)