harbor/static/ng/resources/js/harbor.config.js

10 lines
228 B
JavaScript

(function() {
'use strict';
angular
.module('harbor.app')
.config(function($interpolateProvider){
$interpolateProvider.startSymbol('//');
$interpolateProvider.endSymbol('//');
});
})();