thingsboard/ui/node_modules/ngFlowchart/app/flowchart/nodeTemplatePath-provider.js
2020-05-19 11:43:42 +03:00

25 lines
428 B
JavaScript

(function() {
'use strict';
angular
.module('flowchart')
.provider('NodeTemplatePath', NodeTemplatePath);
function NodeTemplatePath() {
var templatePath = "flowchart/node.html";
this.setTemplatePath = setTemplatePath;
this.$get = NodeTemplatePath;
function setTemplatePath(path) {
templatePath = path;
}
function NodeTemplatePath() {
return templatePath;
}
}
}());