-
Improvement
-
Resolution: Fixed
-
Minor
-
2.2
-
-
MOODLE_22_STABLE
-
MOODLE_22_STABLE
See ionic.bundle.js:44151
// Fix for URLs in Cordova apps on Windows Phone
|
// http://blogs.msdn.com/b/msdn_answers/archive/2015/02/10/
|
// running-cordova-apps-on-windows-and-windows-phone-8-1-using-ionic-angularjs-and-other-frameworks.aspx
|
.config(['$compileProvider', function($compileProvider) {
|
$compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|tel|ftp|mailto|file|ghttps?|ms-appx|x-wmapp0):/);
|
$compileProvider.imgSrcSanitizationWhitelist(/^\s*(https?|ftp|file|content|blob|ms-appx|x-wmapp0):|data:image\//);
|
}]);
|
Assuming there are no race conditions, we would override the config value set by Ionic without notice.