mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-06 14:19:17 +08:00
8 lines
178 B
JavaScript
8 lines
178 B
JavaScript
(function(window, document, ionic) {
|
|
ionic.Button = function(opts) {
|
|
this.el = opts.el;
|
|
};
|
|
ionic.Button.prototype = {
|
|
}
|
|
})(this, document, ionic = this.ionic || {});
|