Files
ionic-framework/js/views/modalView.js
Max Lynch e8f4eeeac8 Fixed #79
2013-11-06 16:38:12 -06:00

17 lines
306 B
JavaScript

(function(ionic) {
'use strict';
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);