Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
cordova-plugin-local-notifications
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nabil Sadki
cordova-plugin-local-notifications
Commits
97b5c60b
Commit
97b5c60b
authored
Jan 04, 2014
by
Sebastián Katzer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename class LocalNotificationOptions to Options (WP8)
parent
7a6e7996
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
plugin.xml
plugin.xml
+1
-1
LocalNotification.cs
src/wp8/LocalNotification.cs
+2
-2
Options.cs
src/wp8/Options.cs
+1
-1
No files found.
plugin.xml
View file @
97b5c60b
...
@@ -93,7 +93,7 @@
...
@@ -93,7 +93,7 @@
</config-file>
</config-file>
<source-file
src=
"src/wp8/LocalNotification.cs"
/>
<source-file
src=
"src/wp8/LocalNotification.cs"
/>
<source-file
src=
"src/wp8/
LocalNotification
Options.cs"
/>
<source-file
src=
"src/wp8/Options.cs"
/>
</platform>
</platform>
</plugin>
</plugin>
src/wp8/LocalNotification.cs
View file @
97b5c60b
...
@@ -44,7 +44,7 @@ namespace Cordova.Extension.Commands
...
@@ -44,7 +44,7 @@ namespace Cordova.Extension.Commands
public
void
add
(
string
jsonArgs
)
public
void
add
(
string
jsonArgs
)
{
{
string
[]
args
=
JsonHelper
.
Deserialize
<
string
[
]>
(
jsonArgs
);
string
[]
args
=
JsonHelper
.
Deserialize
<
string
[
]>
(
jsonArgs
);
LocalNotificationOptions
options
=
JsonHelper
.
Deserialize
<
LocalNotification
Options
>(
args
[
0
]);
Options
options
=
JsonHelper
.
Deserialize
<
Options
>(
args
[
0
]);
// Application Tile is always the first Tile, even if it is not pinned to Start.
// Application Tile is always the first Tile, even if it is not pinned to Start.
ShellTile
AppTile
=
ShellTile
.
ActiveTiles
.
First
();
ShellTile
AppTile
=
ShellTile
.
ActiveTiles
.
First
();
...
@@ -108,7 +108,7 @@ namespace Cordova.Extension.Commands
...
@@ -108,7 +108,7 @@ namespace Cordova.Extension.Commands
/// <summary>
/// <summary>
/// Creates tile data
/// Creates tile data
/// </summary>
/// </summary>
private
FlipTileData
CreateTileData
(
LocalNotification
Options
options
)
private
FlipTileData
CreateTileData
(
Options
options
)
{
{
FlipTileData
tile
=
new
FlipTileData
();
FlipTileData
tile
=
new
FlipTileData
();
...
...
src/wp8/
LocalNotification
Options.cs
→
src/wp8/Options.cs
View file @
97b5c60b
...
@@ -29,7 +29,7 @@ namespace De.APPPlant.Cordova.Plugin.LocalNotification
...
@@ -29,7 +29,7 @@ namespace De.APPPlant.Cordova.Plugin.LocalNotification
/// Represents LiveTile options
/// Represents LiveTile options
/// </summary>
/// </summary>
[
DataContract
]
[
DataContract
]
class
LocalNotification
Options
class
Options
{
{
/// <summary>
/// <summary>
/// The Title that is displayed
/// The Title that is displayed
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment