Skip to content

Instantly share code, notes, and snippets.

@koron
Created March 8, 2015 02:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koron/b7d1713eaa923bd133bd to your computer and use it in GitHub Desktop.
Save koron/b7d1713eaa923bd133bd to your computer and use it in GitHub Desktop.
即時関数で小さなスコープの変数を作成するサンプルコード
((t) ->
$('.elem:last > .del', t).on 'click', ->
@parent().remove()
$('.elem > .edit', t).on 'click', ->
$('.elem', t).css(opacity: 0.5)
@parent().css(opacity: 1.0).find('textarea').show()
) $('.maincontent .tab.user .user-list')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment