mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-06 22:29:44 +08:00
Angular examples working again
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
/**
|
||||
* Adapted from Backbone.js
|
||||
*/
|
||||
(function(window, document, ionic) {
|
||||
(function(ionic) {
|
||||
var optionalParam = /\((.*?)\)/g;
|
||||
var namedParam = /(\(\?)?:\w+/g;
|
||||
var splatParam = /\*\w+/g;
|
||||
@ -111,4 +111,4 @@
|
||||
return matched;
|
||||
},
|
||||
};
|
||||
})(this, document, ion = this.ionic || {});
|
||||
})(window.ionic);
|
||||
|
||||
@ -1,7 +1,5 @@
|
||||
(function(ionic) {
|
||||
|
||||
ionic.controllers = ionic.controllers || {};
|
||||
|
||||
ionic.controllers.TabBarController = function(options) {
|
||||
this.tabBar = options.tabBar;
|
||||
|
||||
@ -121,4 +119,4 @@ ionic.controllers.TabBarController.prototype = {
|
||||
},
|
||||
}
|
||||
|
||||
})(ionic = window.ionic || {});
|
||||
})(window.ionic);
|
||||
|
||||
Reference in New Issue
Block a user