Update JS snapshot to version 3.5.0-dev (via coho)

This commit is contained in:
Joe Bowser 2014-02-14 13:52:31 -08:00
parent 7741312673
commit 26a3f6ddc3

View File

@ -1,5 +1,5 @@
// Platform: android // Platform: android
// 3.5.0-dev-ba3190d // 3.5.0-dev-ddf13aa
/* /*
Licensed to the Apache Software Foundation (ASF) under one Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file or more contributor license agreements. See the NOTICE file
@ -19,7 +19,7 @@
under the License. under the License.
*/ */
;(function() { ;(function() {
var CORDOVA_JS_BUILD_LABEL = '3.5.0-dev-ba3190d'; var CORDOVA_JS_BUILD_LABEL = '3.5.0-dev-ddf13aa';
// file: src/scripts/require.js // file: src/scripts/require.js
/*jshint -W079 */ /*jshint -W079 */
@ -1530,7 +1530,7 @@ function findCordovaPath() {
var scripts = document.getElementsByTagName('script'); var scripts = document.getElementsByTagName('script');
var term = 'cordova.js'; var term = 'cordova.js';
for (var n = scripts.length-1; n>-1; n--) { for (var n = scripts.length-1; n>-1; n--) {
var src = scripts[n].src; var src = scripts[n].src.replace(/\?.*$/, ''); // Strip any query param (CB-6007).
if (src.indexOf(term) == (src.length - term.length)) { if (src.indexOf(term) == (src.length - term.length)) {
path = src.substring(0, src.length - term.length); path = src.substring(0, src.length - term.length);
break; break;