Nacho Moço
Nacho Moço
Same error here! Any solution?
In my case, it seems there is a problem with some format or annotations in the google charts directive. I write my own directive google-chart.directive.ts from scratch, following the Angular...
I have tried the new pack and the error persists. In AoT mode fails when compile: ``` ERROR in Error encountered resolving symbol values statically. Calling function 'ɵmakeDecorator', function calls...
A dirty and temporal aproach: ``` $input.keyup(function (event) { if ((event.keyCode === 8 || event.keyCode === 46) && $(this).val() === '') { $(this).blur(); $(this).focus(); } }); ```