mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 09:21:25 +00:00
Cleanup: move out js, require_self shouldnt be necessary
This commit is contained in:
parent
75178aee09
commit
6bc61ff4b4
1 changed files with 38 additions and 0 deletions
38
app/assets/javascripts/misc.js.coffee
Normal file
38
app/assets/javascripts/misc.js.coffee
Normal file
|
@ -0,0 +1,38 @@
|
|||
$ ->
|
||||
$('#logout').click ->
|
||||
$(this).closest('form').submit()
|
||||
|
||||
$('select').each (i, el) ->
|
||||
$select = $(el)
|
||||
|
||||
$select.wrap '<div class="select-wrapper" />'
|
||||
$select.on 'DOMSubtreeModified', (event) ->
|
||||
$el = $(this)
|
||||
$wrapper = $el.parent()
|
||||
|
||||
if $el.is("[disabled]")
|
||||
$wrapper.addClass 'disabled'
|
||||
else
|
||||
$wrapper.removeClass 'disabled'
|
||||
|
||||
$select.trigger 'DOMSubtreeModified'
|
||||
|
||||
$('a[href=#form_submit]').click ->
|
||||
$(this).closest('form').submit()
|
||||
return false
|
||||
|
||||
$('select.autosubmit').change ->
|
||||
$(this).closest('form').submit()
|
||||
|
||||
$('#notification').delay(3000).fadeOut()
|
||||
|
||||
$('#steam-search a').click (event) ->
|
||||
event.preventDefault()
|
||||
|
||||
$search = $('#steam-search')
|
||||
id = $search.data 'user-id'
|
||||
|
||||
$search.html "<p>Searching...</p>"
|
||||
|
||||
$.get "/api/v1/users/#{id}", (data) ->
|
||||
$search.html "<a href='#{data.steam.url}'>Steam Profile: #{data.steam.nickname}</a>"
|
Loading…
Reference in a new issue