When I use the submit() event of blueimp file uploader within the DOM, everything seems to work fine. i.e.:
<span class="btn" ng-click="submit()">Go</span>
However, calling $scope.submit() doesn't seem to work:
<span class="btn" ng-click="customSubmit()">Go</span>
$scope.customSubmit = function(){
$scope.doSOmthingElses();
$scope.submit();
}
$scope.submit() practically does nothing when called from the js rather than from the DOM.