I am using AngularJS highcharts (https://github.com/pablojim/highcharts-ng)
I have this config and I need make sure it is only binded once. I looked up one-way binding on AngularJS and it says I need to use :: if I am using AngularJs 1.3(Which I am ). But I am not sure how to use it on a custom directive.
<highchart config="configtemp"></highchart>
I tried something like but it doesn't work
<highchart config=":: configtemp"></highchart>
::will indeed prevent the value of the attributeconfigfrom changing, so if the highchart directive is gathering new config data, it's not from this scope value.