From 9e4ef285a8592a7c1d16c279842e6215ae160917 Mon Sep 17 00:00:00 2001 From: Frank Sheiness Date: Tue, 8 Sep 2015 22:53:54 -0500 Subject: [PATCH] Fix attribute to allow use of % symbol in height and width --- dist/amChartsDirective.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/amChartsDirective.js b/dist/amChartsDirective.js index 6cd759c..058731b 100644 --- a/dist/amChartsDirective.js +++ b/dist/amChartsDirective.js @@ -7,8 +7,8 @@ angular.module('amChartsDirective', []).directive('amChart', ['$q', function ($q replace: true, scope: { options: '=', - height: '=', - width: '=' + height: '@', + width: '@' }, template: '
', link: function ($scope, $el) {