You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just updated to 1.0.0-rc5 and it seems like "blob" urls in images were removed in order to be able to provide add support for Windows Phone due to this blog post
// 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?|ftp|mailto|file|ghttps?|ms-appx|x-wmapp0):/);
$compileProvider.imgSrcSanitizationWhitelist(/^\s*(https?|ftp|file|ms-appx|x-wmapp0):|data:image\//);
}]);
Current Angular implementation is allowing "blob" urls for images and Ripple is depending on these when using the camera plugin. Is there a particular reason for why "blob" was removed?
The text was updated successfully, but these errors were encountered:
hasandogu
changed the title
Blob urls for images in 1.0.0-rc5
bug: Blob urls for images in 1.0.0-rc5
Apr 30, 2015
Type: bug
Platform: all
Just updated to 1.0.0-rc5 and it seems like "blob" urls in images were removed in order to be able to provide add support for Windows Phone due to this blog post
Current Angular implementation is allowing "blob" urls for images and Ripple is depending on these when using the camera plugin. Is there a particular reason for why "blob" was removed?
The text was updated successfully, but these errors were encountered: