From aef21bc4a94b965d6e55c2596d76b8c46fd1f371 Mon Sep 17 00:00:00 2001 From: Steve Gill Date: Wed, 1 Apr 2015 16:35:42 -0700 Subject: [PATCH] Revert "CB-8683 updated wp and browser specific references of old id to new id" This reverts commit c85cab15b7db6f9cceb983d1657329642ecdf9f1. --- src/browser/InAppBrowserProxy.js | 8 ++++---- src/wp/InAppBrowser.cs | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/browser/InAppBrowserProxy.js b/src/browser/InAppBrowserProxy.js index 33fbe47..85aa2cf 100644 --- a/src/browser/InAppBrowserProxy.js +++ b/src/browser/InAppBrowserProxy.js @@ -198,19 +198,19 @@ var IAB = { }, injectScriptFile: function (win, fail, args) { - var msg = 'Browser cordova-plugin-inappbrowser injectScriptFile is not yet implemented'; + var msg = 'Browser org.apache.cordova.inappbrowser injectScriptFile is not yet implemented'; console.warn(msg); fail && fail(msg); }, injectStyleCode: function (win, fail, args) { - var msg = 'Browser cordova-plugin-inappbrowser injectStyleCode is not yet implemented'; + var msg = 'Browser org.apache.cordova.inappbrowser injectStyleCode is not yet implemented'; console.warn(msg); fail && fail(msg); }, injectStyleFile: function (win, fail, args) { - var msg = 'Browser cordova-plugin-inappbrowser injectStyleFile is not yet implemented'; + var msg = 'Browser org.apache.cordova.inappbrowser injectStyleFile is not yet implemented'; console.warn(msg); fail && fail(msg); } @@ -218,4 +218,4 @@ var IAB = { module.exports = IAB; -require("cordova/exec/proxy").add("InAppBrowser", module.exports); +require("cordova/exec/proxy").add("InAppBrowser", module.exports); \ No newline at end of file diff --git a/src/wp/InAppBrowser.cs b/src/wp/InAppBrowser.cs index ddb5122..f5b7b1d 100644 --- a/src/wp/InAppBrowser.cs +++ b/src/wp/InAppBrowser.cs @@ -159,14 +159,14 @@ namespace WPCordovaClassLib.Cordova.Commands public void injectScriptFile(string options) { - Debug.WriteLine("Error : Windows Phone cordova-plugin-inappbrowser does not currently support executeScript"); + Debug.WriteLine("Error : Windows Phone org.apache.cordova.inappbrowser does not currently support executeScript"); string[] args = JSON.JsonHelper.Deserialize(options); // throw new NotImplementedException("Windows Phone does not currently support 'executeScript'"); } public void injectStyleCode(string options) { - Debug.WriteLine("Error : Windows Phone cordova-plugin-inappbrowser does not currently support insertCSS"); + Debug.WriteLine("Error : Windows Phone org.apache.cordova.inappbrowser does not currently support insertCSS"); return; //string[] args = JSON.JsonHelper.Deserialize(options); @@ -199,7 +199,7 @@ namespace WPCordovaClassLib.Cordova.Commands public void injectStyleFile(string options) { - Debug.WriteLine("Error : Windows Phone cordova-plugin-inappbrowser does not currently support insertCSS"); + Debug.WriteLine("Error : Windows Phone org.apache.cordova.inappbrowser does not currently support insertCSS"); return; //string[] args = JSON.JsonHelper.Deserialize(options);