Merge pull request #204 from driftyco/wip-ng1

merge
This commit is contained in:
Ibrahim Hadeed 2016-06-09 21:26:34 -04:00 committed by GitHub
commit b307690cca
2 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
declare var window;
/**
* Initialize the ngCordova Angular module if we're running in ng1.
* Initialize the ionic.native Angular module if we're running in ng1.
* This iterates through the list of registered plugins and dynamically
* creates Angular 1 services of the form $cordovaSERVICE, ex: $cordovStatusBar.
*/
@ -9,7 +9,7 @@ export function initAngular1(plugins) {
if (window.angular) {
window.angular.module('ionic.native', []);
for(var name in plugins) {
for (var name in plugins) {
let serviceName = '$cordova' + name;
let cls = plugins[name];
@ -21,8 +21,8 @@ export function initAngular1(plugins) {
}
funcs['name'] = name;
return funcs;
}])
}]);
})(serviceName, cls, name);
}
}
}
}

View File

@ -15,7 +15,7 @@ import {Plugin, Cordova} from './plugin';
* if(available){
*
* SafariViewController.show({
* utl: 'http://ionic.io',
* url: 'http://ionic.io',
* hidden: false,
* animated: false,
* transition: 'curl',