Added the project's files to the repo
BIN
public/audio/opting_out_ep/01 Opting Out.mp3
Executable file
BIN
public/audio/opting_out_ep/01 Opting Out.ogg
Executable file
BIN
public/audio/opting_out_ep/02 Elsewhere.mp3
Executable file
BIN
public/audio/opting_out_ep/02 Elsewhere.ogg
Executable file
BIN
public/audio/opting_out_ep/03 What Happened to Forever.mp3
Executable file
BIN
public/audio/opting_out_ep/03 What Happened to Forever.ogg
Executable file
BIN
public/audio/opting_out_ep/04 Lady.mp3
Executable file
BIN
public/audio/opting_out_ep/04 Lady.ogg
Executable file
1
public/css/main.css
Executable file
7
public/css/main.css.map
Executable file
BIN
public/img/about/andrew.jpg
Executable file
After Width: | Height: | Size: 663 KiB |
BIN
public/img/about/greg.jpg
Executable file
After Width: | Height: | Size: 140 KiB |
BIN
public/img/about/halftone.jpg
Executable file
After Width: | Height: | Size: 1.7 MiB |
BIN
public/img/about/halftone2.jpg
Executable file
After Width: | Height: | Size: 160 KiB |
BIN
public/img/about/halftone3.jpg
Executable file
After Width: | Height: | Size: 1.8 MiB |
BIN
public/img/about/wyatt.jpg
Executable file
After Width: | Height: | Size: 660 KiB |
BIN
public/img/about/zakk.jpg
Executable file
After Width: | Height: | Size: 295 KiB |
BIN
public/img/banner/oo-banner.jpg
Executable file
After Width: | Height: | Size: 20 KiB |
BIN
public/img/bg.jpg
Executable file
After Width: | Height: | Size: 1.7 MiB |
BIN
public/img/bg2.jpg
Executable file
After Width: | Height: | Size: 434 KiB |
BIN
public/img/logo-white.gif
Executable file
After Width: | Height: | Size: 3.3 KiB |
BIN
public/img/mail-list.jfif
Executable file
After Width: | Height: | Size: 20 KiB |
BIN
public/img/media/facebook.jpg
Executable file
After Width: | Height: | Size: 2.6 KiB |
BIN
public/img/media/google-plus.jpg
Executable file
After Width: | Height: | Size: 42 KiB |
BIN
public/img/media/instagram.jpg
Executable file
After Width: | Height: | Size: 5.7 KiB |
BIN
public/img/media/soundcloud.jpg
Executable file
After Width: | Height: | Size: 28 KiB |
BIN
public/img/media/twitter.jpg
Executable file
After Width: | Height: | Size: 192 KiB |
BIN
public/img/media/youtube.jpg
Executable file
After Width: | Height: | Size: 8.4 KiB |
3
public/index.php
Executable file
@ -0,0 +1,3 @@
|
||||
<?php
|
||||
|
||||
require '../app/start.php';
|
11
public/js/bit.js
Executable file
@ -0,0 +1,11 @@
|
||||
(function() {
|
||||
$(function() {
|
||||
$.get('https://api.bandsintown.com/artists/Skrillex/events.json?', {
|
||||
'api_version': '2.0',
|
||||
'app_id': 'shows_halftoneband.com'
|
||||
}, function(data) {
|
||||
alert(data);
|
||||
});
|
||||
});
|
||||
|
||||
}).call(this);
|
6
public/js/main.js
Executable file
@ -0,0 +1,6 @@
|
||||
(function() {
|
||||
$(document).ready(function() {
|
||||
return console.log('Hey there, lad!');
|
||||
});
|
||||
|
||||
}).call(this);
|
18
public/js/modules/alert-box.js
Executable file
@ -0,0 +1,18 @@
|
||||
(function() {
|
||||
(function($) {
|
||||
$.fn.alert = function() {
|
||||
return this.each(function() {
|
||||
var self;
|
||||
self = $(this);
|
||||
self.on('click', '.close-button', function(e) {
|
||||
e.preventDefault();
|
||||
self.addClass('close');
|
||||
});
|
||||
self.on('transitionEnd webkitTransitionEnd oTransitionEnd', function() {
|
||||
self.remove();
|
||||
});
|
||||
});
|
||||
};
|
||||
})(jQuery);
|
||||
|
||||
}).call(this);
|
22
public/js/modules/awesome-form.js
Executable file
@ -0,0 +1,22 @@
|
||||
(function() {
|
||||
$(function() {
|
||||
var awesomeInput, checkInput;
|
||||
awesomeInput = '.awesome-form .input-group input';
|
||||
checkInput = function(elem) {
|
||||
var text_val;
|
||||
text_val = $(elem).val();
|
||||
if (text_val === '') {
|
||||
$(elem).removeClass('has-value');
|
||||
} else {
|
||||
$(elem).addClass('has-value');
|
||||
}
|
||||
};
|
||||
$(awesomeInput).focusout(function() {
|
||||
checkInput(this);
|
||||
});
|
||||
$(awesomeInput).on('change', function() {
|
||||
checkInput(this);
|
||||
});
|
||||
});
|
||||
|
||||
}).call(this);
|