simple jquery

This commit is contained in:
Adam Bradley
2013-09-30 13:36:27 -05:00
parent 0874928cb3
commit 79d7600be4
8 changed files with 2548 additions and 42 deletions

15
dist/ionic.js vendored
View File

@ -1971,12 +1971,25 @@ ionic.views.TabBar.prototype = {
this.checkbox = opts.checkbox;
this.track = opts.track;
this.handle = opts.handle;
// remember that this element, and all its children are apart of a component
// and assign the component instance to each element so the lookups
// only has to go through this process just once
this.el.isComponent = true;
this.track.component = this;
this.track.isComponent = true;
this.handle.component = this;
this.handle.isComponent = true;
// ensure the handle is draggable
this.handle.draggable = true;
};
ionic.views.Toggle.prototype = {
tap: function(e) {
e.stopPropa
return false;
},
val: function(value) {