i\'m just wondering how to escape a function if it has quotes inside. for example, my variable is:
{{ video.Id }} = \"Don\'t\";
then if
You don't need the inner {{}}, just do <button ng-click="executeFunc(video.Id)"/>
<button ng-click="executeFunc(video.Id)"/>
Your controller function, executeFunc will get the proper value.
executeFunc