mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 09:56:05 -04:00
Change mouse cursor to pointer on elements user can click on
This commit is contained in:
parent
ff21d4d93b
commit
509ce6c137
2 changed files with 5 additions and 1 deletions
|
@ -29,7 +29,7 @@ angular.module('mFileInput', [])
|
|||
scope: {
|
||||
selectedFile: '=mFileInput'
|
||||
},
|
||||
|
||||
|
||||
link: function(scope, element, attrs, ctrl) {
|
||||
element.bind("click", function() {
|
||||
element.find("input")[0].click();
|
||||
|
@ -38,6 +38,9 @@ angular.module('mFileInput', [])
|
|||
scope.$apply();
|
||||
});
|
||||
});
|
||||
|
||||
// Change the mouse icon on mouseover on this element
|
||||
element.css("cursor", "pointer");
|
||||
}
|
||||
};
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue