Repository: cordova-windows Updated Branches: refs/heads/master 44d6fa88b -> 7fe4c2122
Add support for uap3. Project: http://git-wip-us.apache.org/repos/asf/cordova-windows/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-windows/commit/9de6a6ae Tree: http://git-wip-us.apache.org/repos/asf/cordova-windows/tree/9de6a6ae Diff: http://git-wip-us.apache.org/repos/asf/cordova-windows/diff/9de6a6ae Branch: refs/heads/master Commit: 9de6a6aed92a3acc37a615be3d950e7250c7b2e6 Parents: 455bf4b Author: Filiph Sandström <[email protected]> Authored: Wed Aug 10 20:17:24 2016 +0200 Committer: GitHub <[email protected]> Committed: Wed Aug 10 20:17:24 2016 +0200 ---------------------------------------------------------------------- template/cordova/lib/AppxManifest.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/9de6a6ae/template/cordova/lib/AppxManifest.js ---------------------------------------------------------------------- diff --git a/template/cordova/lib/AppxManifest.js b/template/cordova/lib/AppxManifest.js index db59cf1..6740191 100644 --- a/template/cordova/lib/AppxManifest.js +++ b/template/cordova/lib/AppxManifest.js @@ -94,7 +94,7 @@ AppxManifest.get = function (fileName, ignoreCache) { var root = xml.parseElementtreeSync(fileName).getroot(); var prefixes = Object.keys(root.attrib) .reduce(function (result, attrib) { - if (attrib.indexOf('xmlns') === 0 && attrib !== 'xmlns:mp') { + if (attrib.indexOf('xmlns') === 0 && attrib !== 'xmlns:mp' && attrib !== 'xmlns:uap3') { result.push(attrib.replace('xmlns', '').replace(':', '')); } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
