Skip to content

Commit 18909bb

Browse files
Fix issue with nav-view-entering not getting removed
1 parent 9174204 commit 18909bb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/ionNavView/ionNavView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Template.ionNavView.rendered = function () {
4343
}, 0);
4444

4545
Meteor.setTimeout(function () {
46-
$(this).removeClass('nav-view-entering');
46+
$node.removeClass('nav-view-entering');
4747
$('[data-nav-container]').removeClass('nav-view-direction-back').addClass('nav-view-direction-forward');
4848
}, template.transitionDuration);
4949
},

package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Package.describe({
22
name: "meteoric:ionic",
33
summary: "Ionic components for Meteor. No Angular!",
44
version: "0.2.0",
5-
git: "https://github.com/meteoric/meteor-ionic.git"
5+
git: "https://github.com/coderbhai/meteor-ionic.git"
66
});
77

88
Cordova.depends({

0 commit comments

Comments
 (0)