I'm attempting to run the sample AngularJS integration app supplied at:
https://github.com/FineUploader/integration-examples
After plugging in the appropriate fine uploader links in index.html I receive this error on running the app:
TypeError: undefined is not a function at angular.module.directive.link (htp://localhost:5000/client.js:113:32) at nodeLinkFn (htp://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.js:4406:13) at compositeLinkFn (htp://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.js:4015:15) at compositeLinkFn (htp://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.js:4018:13) at compositeLinkFn (htp://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.js:4018:13) at publicLinkFn (htp://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.js:3920:30) at htp://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.js:983:27 at Object.$get.Scope.$eval (htp://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.js:8057:28) at Object.$get.Scope.$apply (htp://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.js:8137:23) at htp://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.js:981:15
Line 113 of client.js is:
$(element).fineUploader({
debug: true,
request: {
endpoint: endpoint,
params: {
sendThumbnailUrl: !qq.supportedFeatures.imagePreviews
}
},
It seems like "fineUploader" is not defined. What am I missing?