- we're testing our custom webparts using angular.js
- in Sharepoin 2013 it works but not within our SP 2010 Environment
- the needed angular and jquery library are linked correctly
As test code in the webpart we just use
<script src="../../_layouts/Angular/angular.js"></script>
<script src="../../_layouts/Angular/jquery-1.9.1.min.js"></script>
<div>
<input type="text" ng-model="search">
<p>you're searching for: {{search}}</p>
</div>
We as well tried to Change the browser compatibiliy advised in http://niftit.com/angularjs-in-sharepoint-2010/ but showing the page with the webpart angular is not bound (showing "{{search}}" - in any browser.
What could be the reason that the active script is not executing?