I need to pass a dynamic param to an applet.
This is my controller:
'use strict';
angular.module('jworkApp')
.controller('AppletCtrl',['$scope', function (scope) {
scope.base64 = "abcd";
}]);
This is my view, the parameter base64 is defined in the controller as "abcd"
<p>{{base64}}</p>
<APPLET>
<PARAM name="text" value={{base64}} />
</APPLET>
When I run my page I see in the p tag the string 'abcd' , but the applet param's value it's simply "{{base64}}".
How could i fix it?