blob: 23aca6d1cd36cf4f3c61d1222ce4a6199f3609e6 [file] [log] [blame]
/*
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
var cordova = require('cordova'),
exec = require('cordova/exec');
// specifically require the following patches :
// localStorage+SessionStorage APIs
require("cordova/plugin/windowsphone/DOMStorage");
// Fix XHR calls to local file-system
require("cordova/plugin/windowsphone/XHRPatch");
module.exports = {
id: "windowsphone",
initialize:function() {
var modulemapper = require('cordova/modulemapper');
modulemapper.loadMatchingModules(/cordova.*\/symbols$/);
modulemapper.mapModules(window);
window.alert = window.alert || require("cordova/plugin/notification").alert;
window.confirm = window.confirm || require("cordova/plugin/notification").confirm;
// Inject a listener for the backbutton, and tell native to override the flag (true/false) when we have 1 or more, or 0, listeners
var backButtonChannel = cordova.addDocumentEventHandler('backbutton');
backButtonChannel.onHasSubscribersChange = function() {
exec(null, null, "CoreEvents", "overridebackbutton", [this.numHandlers == 1]);
};
},
clobbers: {
navigator: {
children: {
console: {
path: "cordova/plugin/windowsphone/console"
}
}
},
console:{
path: "cordova/plugin/windowsphone/console"
},
FileTransfer: {
path: 'cordova/plugin/windowsphone/FileTransfer'
},
open : {
path: 'cordova/plugin/InAppBrowser'
}
}
};