Repository URL to install this package:
|
Version:
0.5.1 ▾
|
_super =
show: $.fn.show
$.fn.show = (duration, origCallback) ->
@each ->
$this = $(this)
callback = ->
origCallback.call $this
$this.trigger('afterShow')
$this.trigger('beforeShow')
_super.show.call $this, duration, callback