mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 21:56:19 +10:00
10 lines
152 B
CoffeeScript
10 lines
152 B
CoffeeScript
$.fn.showAndHide = ->
|
|
$(@).show().
|
|
delay(3000).
|
|
fadeOut()
|
|
|
|
$.fn.enableButton = ->
|
|
$(@).removeAttr('disabled').
|
|
removeClass('disabled')
|
|
|