streamline CSS, remove google font/cdn dep

This commit is contained in:
Kyle Drake 2014-08-29 20:05:19 -07:00
parent ab6abc637e
commit 47344e8bdc
186 changed files with 31689 additions and 1655 deletions

7
public/js/news/event.js Normal file
View file

@ -0,0 +1,7 @@
var Event = {
delete: function(eventId, csrfToken) {
$.post('/event/'+eventId+'/delete', {csrf_token: csrfToken}, function(res) {
location.reload()
})
}
}