mirror of
https://github.com/wassname/mad.git
synced 2026-07-26 13:27:59 +08:00
11 lines
374 B
JavaScript
11 lines
374 B
JavaScript
var app = angular.module("app",[]);
|
|
|
|
app.config([
|
|
'$compileProvider',
|
|
function ($compileProvider) {
|
|
// Default imgSrcSanitizationWhitelist: /^\s*(https?|ftp|file):|data:image\//
|
|
// chrome-extension: will be added to the end of the expression
|
|
$compileProvider.imgSrcSanitizationWhitelist(/^\s*(https?|ftp|file|chrome-extension):|data:image\//);
|
|
}
|
|
]);
|