mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 23:16:52 +08:00
17 lines
306 B
JavaScript
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);
|