# This example does an AJAX lookup and is in CoffeeScript
$('.typeahead').typeahead(
# source can be a function
source: (typeahead, query) ->
# this function receives the typeahead object and the query string
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export PATH=/usr/local/bin:$PATH | |
export JAVA_6_HOME=$(/usr/libexec/java_home -v 1.6) | |
export JAVA_8_HOME=$(/usr/libexec/java_home -v 1.8) | |
export MYSQL_PORT=3306 | |
export SMTP_SERVER=smtp.gmail.com | |
export SMTP_PORT=587 | |
export SMTP_DOMAIN=gmail.com | |
export SMTP_USERNAME=joshbedo@gmail.com | |
export SMTP_PASSWORD=password | |
export SMTP_ENABLE_STARTTLS_AUTO=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Colors | |
$white: #FFF | |
$gray: #808080 | |
$grayLight: lighten($gray, 15%) | |
$grayLighter: lighten($gray, 25%) | |
$grayDark: darken($gray, 15%) | |
$grayDarker: darken($gray, 25%) | |
$blue: #049cdb | |
$green: #46a546 |