Skip to content

Commit

Permalink
chore: bump version v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hsynlms committed Jan 15, 2022
1 parent 6ccc2ac commit f756221
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions dist/zeynep.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* zeynepjs v2.1.4
* zeynepjs v2.2.0
* A light-weight multi-level jQuery side menu plugin.
* It's fully customizable and is compatible with modern browsers such as Google Chrome, Mozilla Firefox, Safari, Edge and Internet Explorer
* MIT License
Expand All @@ -13,7 +13,7 @@
pointer-events:none;
position:fixed;
top:0;
transform:translateX(-100%);
transform:translateX(-100%) translateZ(0px);
z-index:1011;
}

Expand All @@ -39,7 +39,7 @@

.zeynep.opened{
pointer-events:auto;
transform:translateX(0px);
transform:translateX(0px) translateZ(0px);
}

.zeynep.submenu-opened{
Expand Down
10 changes: 5 additions & 5 deletions dist/zeynep.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* zeynepjs v2.1.4
* zeynepjs v2.2.0
* A light-weight multi-level jQuery side menu plugin.
* It's fully customizable and is compatible with modern browsers such as Google Chrome, Mozilla Firefox, Safari, Edge and Internet Explorer
* MIT License
Expand Down Expand Up @@ -53,7 +53,7 @@
!zeynep.hasClass('submenu-opened') && zeynep.addClass('submenu-opened')

// scroll to top before submenu transition
zeynep.scrollTop(0)
zeynep[0].scrollTo({ top: 0 })

eventController('opened', eventDetails)
})
Expand All @@ -78,11 +78,11 @@

// close subMenu
subMenuEl.removeClass('opened current')
zeynep.find('.submenu.opened:last').addClass('current')
zeynep.find('.submenu.opened').last().addClass('current')
!zeynep.find('.submenu.opened').length && zeynep.removeClass('submenu-opened')

// scroll to top between submenu transitions
subMenuEl.scrollTop(0)
subMenuEl[0].scrollTo({ top: 0 })

eventController('closed', eventDetails)
})
Expand Down Expand Up @@ -191,4 +191,4 @@

return instance
}
})(window.jQuery, 'zeynep')
})(window.jQuery || window.cash, 'zeynep')
4 changes: 2 additions & 2 deletions dist/zeynep.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/zeynep.min.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/zeynep.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f756221

Please sign in to comment.