Commit 9b453cc0 by Sebastián Katzer

Update plugin

parent b7115bb4
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<PropertyGroup>
<ReferenceCachePath>C:\Users\sebastian\AppData\Local\Temp\oe2z1w2e_CordovaApp.Phone_refcache</ReferenceCachePath>
</PropertyGroup>
</Project>
\ No newline at end of file
......@@ -79,12 +79,6 @@
<AppxPackagedFile Include="Y:\Documents\github\cordova-example-local-notifications\platforms\windows\www\js\index.js">
<PackagePath>www\js\index.js</PackagePath>
</AppxPackagedFile>
<AppxPackagedFile Include="Y:\Documents\github\cordova-example-local-notifications\platforms\windows\www\plugins\de.appplant.cordova.plugin.email-composer\src\windows\EmailComposerProxy.js">
<PackagePath>www\plugins\de.appplant.cordova.plugin.email-composer\src\windows\EmailComposerProxy.js</PackagePath>
</AppxPackagedFile>
<AppxPackagedFile Include="Y:\Documents\github\cordova-example-local-notifications\platforms\windows\www\plugins\de.appplant.cordova.plugin.email-composer\www\email_composer.js">
<PackagePath>www\plugins\de.appplant.cordova.plugin.email-composer\www\email_composer.js</PackagePath>
</AppxPackagedFile>
<AppxPackagedFile Include="Y:\Documents\github\cordova-example-local-notifications\platforms\windows\www\plugins\de.appplant.cordova.plugin.local-notification\src\windows\LocalNotificationCore.js">
<PackagePath>www\plugins\de.appplant.cordova.plugin.local-notification\src\windows\LocalNotificationCore.js</PackagePath>
</AppxPackagedFile>
......
......@@ -19,8 +19,6 @@ www\css\index.css
www\img\logo.png
www\index.html
www\js\index.js
www\plugins\de.appplant.cordova.plugin.email-composer\src\windows\EmailComposerProxy.js
www\plugins\de.appplant.cordova.plugin.email-composer\www\email_composer.js
www\plugins\de.appplant.cordova.plugin.local-notification\src\windows\LocalNotificationCore.js
www\plugins\de.appplant.cordova.plugin.local-notification\src\windows\LocalNotificationProxy.js
www\plugins\de.appplant.cordova.plugin.local-notification\src\windows\LocalNotificationUtil.js
......
......@@ -19,8 +19,6 @@ www\css\index.css
www\img\logo.png
www\index.html
www\js\index.js
www\plugins\de.appplant.cordova.plugin.email-composer\src\windows\EmailComposerProxy.js
www\plugins\de.appplant.cordova.plugin.email-composer\www\email_composer.js
www\plugins\de.appplant.cordova.plugin.local-notification\src\windows\LocalNotificationCore.js
www\plugins\de.appplant.cordova.plugin.local-notification\src\windows\LocalNotificationProxy.js
www\plugins\de.appplant.cordova.plugin.local-notification\src\windows\LocalNotificationUtil.js
......
......@@ -20,12 +20,12 @@ cordova.define("de.appplant.cordova.plugin.local-notification.LocalNotification.
*/
var Notifications = Windows.UI.Notifications,
applicationData = Windows.Storage.ApplicationData.current,
localSettings = applicationData.localSettings;
var proxy = require('de.appplant.cordova.plugin.local-notification.LocalNotification.Proxy');
var Notifications = Windows.UI.Notifications;
exports.core = {
proxy.core = {
/**
* Executes all queued events.
......
......@@ -259,12 +259,6 @@ exports.getTriggered = function (success, error, ids) {
success(notifications);
};
/**
* Required for core module to access the proxy.
*/
exports.exports = function () {
return exports;
};
cordova.commandProxy.add('LocalNotification', exports);
......
......@@ -20,10 +20,10 @@ cordova.define("de.appplant.cordova.plugin.local-notification.LocalNotification.
*/
exports = require('de.appplant.cordova.plugin.local-notification.LocalNotification.Proxy').core;
var channel = require('cordova/channel');
exports = require('de.appplant.cordova.plugin.local-notification.LocalNotification.Proxy.Core').core;
/***********
* MEMBERS *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment