This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| myscope = angular.element('[ng-app=summonApp]').scope(); | |
| var licenseInfoUrl = "http://queens.scholarsportal.info/licenses/"; | |
| myscope.$watchCollection('feed', function() { | |
| console.log('Scope.feed changed! - loading finished.'); | |
| //delay 1 sec. to wait for DOM to actually finish loading | |
| setTimeout(function() { | |
| //for each content type display, do these | |
| $('li[ng-repeat="item in feed.items"]').each(function(index) { | |
| //console.log(index); | |
| try { |