mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-25 03:35:21 +01:00
10 lines
228 B
JavaScript
10 lines
228 B
JavaScript
|
(function() {
|
||
|
'use strict';
|
||
|
angular
|
||
|
.module('harbor.app')
|
||
|
.config(function($interpolateProvider){
|
||
|
$interpolateProvider.startSymbol('//');
|
||
|
$interpolateProvider.endSymbol('//');
|
||
|
});
|
||
|
|
||
|
})();
|