From 469e9cd1369a19db857ade174e1f5bcec60120d9 Mon Sep 17 00:00:00 2001 From: Abdullah Almsaeed Date: Sat, 25 Feb 2017 14:46:01 -0500 Subject: [PATCH] Update data selector to match the name of the plugin --- build/js/PushMenu.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/build/js/PushMenu.js b/build/js/PushMenu.js index 645ee4cca..78946c69c 100644 --- a/build/js/PushMenu.js +++ b/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)