CB-11709 Tests should use resolveLocalFileSystemURL() instead of deprecated resolveFileSystemURI()

This commit is contained in:
Alexander Sorokin
2016-08-16 19:19:22 +03:00
parent 92d67d990d
commit 62d1b01e81
2 changed files with 9 additions and 9 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
/*jshint node: true */
/* global Q, resolveLocalFileSystemURI, Camera, cordova */
/* global Q, resolveLocalFileSystemURL, Camera, cordova */
/*
*
* Licensed to the Apache Software Foundation (ASF) under one
@@ -174,11 +174,11 @@ module.exports.checkPicture = function (pid, options, cb) {
result.indexOf('content:') === 0 ||
result.indexOf('assets-library:') === 0) {
if (!window.resolveLocalFileSystemURI) {
if (!window.resolveLocalFileSystemURL) {
errorCallback('Cannot read file. Please install cordova-plugin-file to fix this.');
return;
}
resolveLocalFileSystemURI(result, function (entry) {
resolveLocalFileSystemURL(result, function (entry) {
if (skipFileTypeCheck) {
displayFile(entry);
} else {