Adds in the missing chart.js & wrapper lib (part of it was put in the solution it seems but not fully merged in correctly perhaps?!)
This commit is contained in:
@@ -248,6 +248,17 @@ gulp.task('dependencies', function () {
|
||||
"src": ["./node_modules/bootstrap-social/bootstrap-social.css"],
|
||||
"base": "./node_modules/bootstrap-social"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "angular-chart.js",
|
||||
"src": ["./node_modules/angular-chart.js/dist/angular-chart.min.js"],
|
||||
"base": "./node_modules/angular-chart.js/dist"
|
||||
},
|
||||
{
|
||||
"name": "chart.js",
|
||||
"src": ["./node_modules/chart.js/dist/chart.min.js"],
|
||||
"base": "./node_modules/chart.js/dist"
|
||||
},
|
||||
{
|
||||
"name": "clipboard",
|
||||
"src": ["./node_modules/clipboard/dist/clipboard.min.js"],
|
||||
|
||||
@@ -14,7 +14,8 @@ var app = angular.module('umbraco', [
|
||||
'ngMessages',
|
||||
'tmh.dynamicLocale',
|
||||
'ngFileUpload',
|
||||
'LocalStorageModule'
|
||||
'LocalStorageModule',
|
||||
'chart.js'
|
||||
]);
|
||||
|
||||
app.config(['$compileProvider', function ($compileProvider) {
|
||||
@@ -76,7 +77,7 @@ angular.module("umbraco.viewcache", [])
|
||||
var _op = (url.indexOf("?") > 0) ? "&" : "?";
|
||||
url += _op + "umb__rnd=" + rnd;
|
||||
}
|
||||
|
||||
|
||||
return get(url, config);
|
||||
};
|
||||
return $delegate;
|
||||
|
||||
Reference in New Issue
Block a user