Basic NavController working with demo

This commit is contained in:
Max Lynch
2013-09-16 21:56:22 -05:00
parent 19d2aa5432
commit 0f5ce5b76e
5 changed files with 208 additions and 18 deletions

7
hacking/Button.js Normal file
View File

@ -0,0 +1,7 @@
(function(window, document, ionic) {
ionic.Button = function(opts) {
this.el = opts.el;
};
ionic.Button.prototype = {
}
})(this, document, ionic = this.ionic || {});