# 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 hidden or 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
import pipeline | |
from pipeline import common | |
from google.appengine.ext import db | |
from google.appengine.api import mail | |
from google.appengine.api import xmpp | |
###### Models ###### | |
class User(db.Model): |