From c85cab15b7db6f9cceb983d1657329642ecdf9f1 Mon Sep 17 00:00:00 2001 From: Steve Gill Date: Wed, 1 Apr 2015 16:34:36 -0700 Subject: [PATCH] CB-8683 updated wp and browser specific references of old id to new id --- 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 85aa2cf..33fbe47 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 org.apache.cordova.inappbrowser injectScriptFile is not yet implemented'; + var msg = 'Browser cordova-plugin-inappbrowser injectScriptFile is not yet implemented'; console.warn(msg); fail && fail(msg); }, injectStyleCode: function (win, fail, args) { - var msg = 'Browser org.apache.cordova.inappbrowser injectStyleCode is not yet implemented'; + var msg = 'Browser cordova-plugin-inappbrowser injectStyleCode is not yet implemented'; console.warn(msg); fail && fail(msg); }, injectStyleFile: function (win, fail, args) { - var msg = 'Browser org.apache.cordova.inappbrowser injectStyleFile is not yet implemented'; + var msg = 'Browser cordova-plugin-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); \ No newline at end of file +require("cordova/exec/proxy").add("InAppBrowser", module.exports); diff --git a/src/wp/InAppBrowser.cs b/src/wp/InAppBrowser.cs index f5b7b1d..ddb5122 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 org.apache.cordova.inappbrowser does not currently support executeScript"); + Debug.WriteLine("Error : Windows Phone cordova-plugin-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 org.apache.cordova.inappbrowser does not currently support insertCSS"); + Debug.WriteLine("Error : Windows Phone cordova-plugin-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 org.apache.cordova.inappbrowser does not currently support insertCSS"); + Debug.WriteLine("Error : Windows Phone cordova-plugin-inappbrowser does not currently support insertCSS"); return; //string[] args = JSON.JsonHelper.Deserialize(options);