diff options
author | Michal Rezler <rezlemic@fel.cvut.cz> | 2011-03-23 10:53:23 +0100 |
---|---|---|
committer | Michal Rezler <rezlemic@fel.cvut.cz> | 2011-03-23 10:53:23 +0100 |
commit | 33cd76353b54e426551f59200435fe1687f5b1c1 (patch) | |
tree | 3078874f20fddaf8600d9154340b1c52908c2d46 | |
parent | 35838d22a57707952f630eaf9f9e9ab4c6c3cfb0 (diff) | |
download | rpg-33cd76353b54e426551f59200435fe1687f5b1c1.tar.gz rpg-33cd76353b54e426551f59200435fe1687f5b1c1.tar.bz2 |
Added pointers cursors on a.select
-rw-r--r-- | lib/scripts/media.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/scripts/media.js b/lib/scripts/media.js index c00a71e5f..5dac054b1 100644 --- a/lib/scripts/media.js +++ b/lib/scripts/media.js @@ -716,6 +716,13 @@ attachoptions(); initpopup(); + + // pointers cursors on a.select + var items = $("a.select"); + for(var i=0; i<items.length; i++){ + var elem = items[i]; + elem.style.cursor = 'pointer'; + } // add the action to autofill the "upload as" field content.delegate('#upload__file', 'change', suggest) |