fix(charts): set 0.9.5 version for the chartist library

Closes #5
pull/9/head
KostyaDanovsky 2016-04-11 18:05:17 +03:00
parent cc5cdde2fb
commit 662c5dc529
2 changed files with 2 additions and 6 deletions

View File

@ -46,6 +46,7 @@
"angular-ui-router": "~0.2.15",
"angular-chart.js": "~0.8.8",
"angular-chartist.js": "~3.3.12",
"chartist": "0.9.5",
"angular-morris-chart": "~1.1.0",
"ionrangeslider": "~2.1.2",
"angular-bootstrap": "~0.14.3",

View File

@ -30,8 +30,6 @@
]
};
$scope.areaLineData = {
labels: [1, 2, 3, 4, 5, 6, 7, 8],
series: [
@ -236,9 +234,6 @@
new Chartist.Pie('#simple-pie', $scope.simplePieData, $scope.simplePieOptions, $scope.pieResponsive);
new Chartist.Pie('#label-pie', $scope.labelsPieData, $scope.labelsPieOptions);
new Chartist.Pie('#donut', $scope.simpleDonutData, $scope.simpleDonutOptions, $scope.donutResponsive);
}, 100);
});
}
})();