This commit is contained in:
Max Lynch
2013-11-06 16:38:12 -06:00
parent 0f515802e5
commit e8f4eeeac8
13 changed files with 372 additions and 6591 deletions

10
dist/js/ionic.js vendored
View File

@ -3724,18 +3724,18 @@ window.ionic = {
;
(function(ionic) {
'use strict';
ionic.views.Modal = function(opts) {
this.el = opts.el;
};
ionic.views.Modal.prototype = {
ionic.views.Modal = ionic.views.View.inherit({
initialize: function(opts) {
this.el = opts.el;
},
show: function() {
this.el.classList.add('active');
},
hide: function() {
this.el.classList.remove('active');
}
};
});
})(ionic);
;