Skip to content

Commit

Permalink
Merge branch 'DanielNill-jquery_1.9_compliance' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
greg5green committed Jun 21, 2015
2 parents 41650e3 + 367eba0 commit 4de73d0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/css/owl.animate.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
/*
* Owl Carousel - Animate Plugin
*/
.owl-carousel .animated {
Expand Down
2 changes: 1 addition & 1 deletion src/js/owl.hash.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
}, this),
'prepared.owl.carousel': $.proxy(function(e) {
if (e.namespace) {
var hash = $(e.content).find('[data-hash]').andSelf('[data-hash]').attr('data-hash');
var hash = $(e.content).find('[data-hash]').addBack('[data-hash]').attr('data-hash');

if (!hash) {
return;
Expand Down
2 changes: 1 addition & 1 deletion src/js/owl.navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
'prepared.owl.carousel': $.proxy(function(e) {
if (e.namespace && this._core.settings.dotsData) {
this._templates.push('<div class="' + this._core.settings.dotClass + '">' +
$(e.content).find('[data-dot]').andSelf('[data-dot]').attr('data-dot') + '</div>');
$(e.content).find('[data-dot]').addBack('[data-dot]').attr('data-dot') + '</div>');
}
}, this),
'added.owl.carousel': $.proxy(function(e) {
Expand Down

0 comments on commit 4de73d0

Please sign in to comment.