angular-base64-upload
angular-base64-upload copied to clipboard
Handler is not an function
When using onloadstart or any other event it results in a handler is not a function error. It does trigger the function attached on the event.

Chrome, latest MacOS Sierra Angular 1.2.* Bootstrap 3.*
Do not use parentheses :)
Incorrect :
<input type="file" ng-model="myFile" base-sixty-four-input onloadstart="uploadStart()" />
Correct :
<input type="file" ng-model="myFile" base-sixty-four-input onloadstart="uploadStart" />