I recently discovered the ngf-select directive within ng-file-upload for AngularJS. Here's how it's used:
<button type="file" ngf-select="uploadFiles($file, $invalidFiles)"
accept="image/*" ngf-max-height="1000" ngf-max-size="1MB">
Select File
</button>
I could only find limited information on what ngf stands for. My best guess is that it functions as an if-condition during the select event. I feel like I may have missed a crucial part in the documentation and I don't want to rely on assumptions.
Could someone clarify the purpose of ngf prefixes and possibly provide a link to the documentation?