refactor(plugins): clean up

This commit is contained in:
Ibrahim Hadeed 2016-04-29 22:47:01 -04:00
parent 2efce5dcb7
commit a1946442d1
2 changed files with 4 additions and 3 deletions

View File

@ -16,7 +16,7 @@ export class GoogleMaps {
private _objectInstance : any;
constructor (elementId : string) {
this._objectInstance = {};//plugin.google.maps.Map.getMap(document.getElementById(elementId));
this._objectInstance = plugin.google.maps.Map.getMap(document.getElementById(elementId));
}
@Cordova({

View File

@ -4,7 +4,9 @@ declare var sqlitePlugin;
* @name SQLite
*/
@Plugin({
pluginRef: 'sqlitePlugin'
pluginRef: 'sqlitePlugin',
plugin: 'cordova-sqlite-storage',
repo: 'https://github.com/litehelpers/Cordova-sqlite-storage'
})
export class SQLite {
@ -90,7 +92,6 @@ export class SQLite {
finish () : void {}
@CordovaInstance({
sync: true
})