Skip to content

Commit

Permalink
more keyboard fixes, publish 0.1.15
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Wientge committed Feb 19, 2015
1 parent b1c0db5 commit a29f799
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .versions
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ [email protected]
[email protected]
[email protected]
[email protected]
meteoric:[email protected].14
meteoric:[email protected].15
[email protected]
[email protected]
[email protected]
Expand Down
4 changes: 1 addition & 3 deletions components/ionKeyboard/ionKeyboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,7 @@ window.addEventListener('native.keyboardshow', function (event) {
var contentOffset = $(event.delegateTarget).offset().top;
var padding = 10;
var scrollTo = $(event.delegateTarget).scrollTop() + $(this).offset().top - (contentOffset + padding);
$(event.delegateTarget).animate({
scrollTop: scrollTo
});
$(event.delegateTarget).scrollTop(scrollTo);
});
});

Expand Down
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "meteoric:ionic",
summary: "Ionic components for Meteor. No Angular!",
version: "0.1.14",
version: "0.1.15",
git: "https://github.com/meteoric/meteor-ionic.git"
});

Expand Down

0 comments on commit a29f799

Please sign in to comment.