Commit c456f9c7 by Sebastián Katzer

Support for Foreground-Callback (WP8)

parent 864d5d2e
...@@ -44,6 +44,11 @@ namespace Cordova.Extension.Commands ...@@ -44,6 +44,11 @@ namespace Cordova.Extension.Commands
// Update the Application Tile // Update the Application Tile
AppTile.Update(TileData); AppTile.Update(TileData);
if (!string.IsNullOrEmpty(options.Foreground))
{
DispatchCommandResult(new PluginResult(PluginResult.Status.OK, options.Foreground + "," + options.ID));
}
} }
DispatchCommandResult(); DispatchCommandResult();
......
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