I am using the ng-grid.js library in my AngularJS project. I want to check whether setTimeout and eval() are working after removing unsafe-eval from the Content Security Policy.
<add name="Content-Security-Policy" value="script-src 'self' http: https: 'unsafe-inline' 'unsafe-eval';"/>
What I Have Tried:
I have tried to debug the setTimeout and eval but call is notcomming
Checked the browser console for errors.
Verified that all JavaScript files are loaded correctly.
Ensured that the modal is being triggered and shown correctly.