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
from django.conf.urls.defaults import * | |
from tastypie.paginator import Paginator | |
from tastypie.exceptions import BadRequest | |
from tastypie.resources import ModelResource | |
from tastypie.utils import trailing_slash | |
from haystack.query import SearchQuerySet, EmptySearchQuerySet | |
from clips.models import Clip |
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
/** | |
* GoogleMapsAPI Loader Module | |
* | |
* Returns a promise that resolves with the google.maps object when all of the google maps api loading process is complete | |
* | |
* Example Usage: | |
* | |
* define([ 'app/lib/google-maps-loader' ], function(GoogleMapsLoader){ | |
* GoogleMapsLoader.done(function(GoogleMaps){ | |
* // your google maps code here! |