Skip to content

Instantly share code, notes, and snippets.

@ocReaper
Created December 18, 2015 22:36
Show Gist options
  • Save ocReaper/e7674c49c77ac9e2845c to your computer and use it in GitHub Desktop.
Save ocReaper/e7674c49c77ac9e2845c to your computer and use it in GitHub Desktop.
Blob file download in Angular.js using $resource Part 5
(function () {
'use strict';
angular
.module('app')
.config(allowBlobLinkHrefs);
function allowBlobLinkHrefs($compileProvider) {
$compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|ftp|mailto|tel|file|blob):/);
}
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment