diff --git a/assets/coffee/modules/alert-box.coffee b/assets/coffee/modules/alert-box.coffee index bfaaa5b..5b39c1f 100755 --- a/assets/coffee/modules/alert-box.coffee +++ b/assets/coffee/modules/alert-box.coffee @@ -1,16 +1,16 @@ (($) -> - - $.fn.alert = -> - @each -> - self = $(this) - self.on 'click', '.close-button', (e) -> - e.preventDefault() - self.addClass 'close' - return - self.on 'transitionEnd webkitTransitionEnd oTransitionEnd', -> - self.remove() - return - return - - return + + $.fn.alert = -> + @each -> + self = $(this) + self.on 'click', '.close-button', (e) -> + e.preventDefault() + self.addClass 'close' + return + self.on 'transitionEnd webkitTransitionEnd oTransitionEnd', -> + self.remove() + return + return + + return ) jQuery \ No newline at end of file diff --git a/assets/coffee/music.coffee b/assets/coffee/music.coffee deleted file mode 100644 index 64f54f0..0000000 --- a/assets/coffee/music.coffee +++ /dev/null @@ -1,4 +0,0 @@ -$(document).ready -> - player = $('#music-player') - - player.volume = .5 \ No newline at end of file