mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 21:48:42 +08:00
fix(core): update ionic global property names
This commit is contained in:
@ -22,17 +22,19 @@ export function setupCore(config: Config, plt: Platform, domCtrl: DomController,
|
|||||||
}
|
}
|
||||||
|
|
||||||
// same controllers are used by ionic core
|
// same controllers are used by ionic core
|
||||||
ionic['configCtrl'] = config;
|
ionic['ConfigCtrl'] = config;
|
||||||
|
|
||||||
// keep core and angular dom reads/writes *nsync
|
// keep core and angular dom reads/writes *nsync
|
||||||
ionic['domCtrl'] = domCtrl;
|
ionic['DomCtrl'] = domCtrl;
|
||||||
|
|
||||||
// keep core and angular dom reads/writes *nsync
|
|
||||||
ionic['eventNamePrefix'] = '$';
|
|
||||||
|
|
||||||
// next tick controller created here so that it can
|
// next tick controller created here so that it can
|
||||||
// be created to run outside of angular
|
// be created to run outside of angular
|
||||||
ionic['nextTickCtrl'] = getNextTickController(zone, plt.userAgent().toLowerCase());
|
ionic['NextTickCtrl'] = getNextTickController(zone, plt.userAgent().toLowerCase());
|
||||||
|
|
||||||
|
// keep core and angular dom reads/writes *nsync
|
||||||
|
ionic['eventNameFn'] = function(eventName: string) {
|
||||||
|
return '$' + eventName;
|
||||||
|
};
|
||||||
|
|
||||||
// build up a path for the exact ionic core javascript file this browser needs
|
// build up a path for the exact ionic core javascript file this browser needs
|
||||||
var pathItems: string[] = ['core'];
|
var pathItems: string[] = ['core'];
|
||||||
|
Reference in New Issue
Block a user