Updated Branches:
  refs/heads/3.0.0 fa57a36d7 -> 75b136a83

removing leading slash for plugin loader


Project: http://git-wip-us.apache.org/repos/asf/cordova-js/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-js/commit/757fa3c9
Tree: http://git-wip-us.apache.org/repos/asf/cordova-js/tree/757fa3c9
Diff: http://git-wip-us.apache.org/repos/asf/cordova-js/diff/757fa3c9

Branch: refs/heads/3.0.0
Commit: 757fa3c93d078fc9d1e393e671f81c6ed237bc06
Parents: f0d783f
Author: Steven Gill <stevengil...@gmail.com>
Authored: Tue May 14 17:05:54 2013 -0700
Committer: Steven Gill <stevengil...@gmail.com>
Committed: Tue May 14 17:05:54 2013 -0700

----------------------------------------------------------------------
 lib/scripts/plugin_loader.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-js/blob/757fa3c9/lib/scripts/plugin_loader.js
----------------------------------------------------------------------
diff --git a/lib/scripts/plugin_loader.js b/lib/scripts/plugin_loader.js
index 053ebf1..357f8a7 100644
--- a/lib/scripts/plugin_loader.js
+++ b/lib/scripts/plugin_loader.js
@@ -114,7 +114,7 @@
         finishPluginLoading();
     };
     try { // we commented we were going to try, so let us actually try and 
catch
-        xhr.open('GET', '/cordova_plugins.json', true); // Async
+        xhr.open('GET', 'cordova_plugins.json', true); // Async
         xhr.send();
     } catch(err){
         finishPluginLoading();

Reply via email to