reorder HeaderBar after NavBar in grunt

This commit is contained in:
Adam Bradley
2013-09-27 10:42:19 -05:00
parent 66bb676aa3
commit 0823b58d8e
7 changed files with 109 additions and 105 deletions

14
dist/ionic-simple.js vendored
View File

@ -1,10 +1,10 @@
(function(window, document, ionic) {
ionic.simple = {
ionic.Components = {};
ionic.registerComponent = function(name, className) {
this.Components[name] = className;
};
function initalize() {
@ -30,13 +30,7 @@
(function(window, document, ionic) {
function initalize() {
ionic.on("swipe", swipe, document.body)
}
function swipe(e) {
alert(e.target.tagName)
ionic.registerComponent("toggle", "toggle");
}
ionic.on("domready", initalize);