Added the project's files to the repo

This commit is contained in:
Ascendings
2015-08-30 12:34:43 -04:00
parent b66a773ed8
commit c425c861aa
154 changed files with 4670 additions and 0 deletions

9
assets/coffee/bit.coffee Executable file
View File

@ -0,0 +1,9 @@
$ ->
$.get 'https://api.bandsintown.com/artists/Skrillex/events.json?', {
'api_version': '2.0'
'app_id': 'shows_halftoneband.com'
}, (data) ->
alert data
return
return

2
assets/coffee/main.coffee Executable file
View File

@ -0,0 +1,2 @@
$(document).ready ->
console.log 'Hey there, lad!'

View File

@ -0,0 +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
) jQuery

View File

@ -0,0 +1,20 @@
$ ->
awesomeInput = '.awesome-form .input-group input'
checkInput = (elem) ->
text_val = $(elem).val()
if text_val == ''
$(elem).removeClass 'has-value'
else
$(elem).addClass 'has-value'
return
$(awesomeInput).focusout ->
checkInput(@)
return
$(awesomeInput).on 'change', ->
checkInput(@)
return
return