Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit c175bd8

Browse files
author
Nick Litwin
committed
Use correct quotes
1 parent 986fc13 commit c175bd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/directives/on-file-change.directive.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
return {
1212
restrict: 'A',
1313
link: function(scope, element, attr, ctrl) {
14-
element.bind("change", function() {
14+
element.bind('change', function() {
1515
scope.vm.onFileChange(element[0].files[0]);
1616
this.value = '';
1717
});

0 commit comments

Comments
 (0)