diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-10-26 11:22:21 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-10-26 11:22:21 -0400 |
commit | da2751757bc8b6638b6dd6af35d961f05957a105 (patch) | |
tree | 4027323ffeef1682067aaf4ade4486a66dde9ced /main | |
parent | 817313b03d6990e419e6c922e12572ea71666c9c (diff) |
mirror changes from commit '943ef2e8e4'
Diffstat (limited to 'main')
-rw-r--r-- | main/templatetags/cdn.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/templatetags/cdn.py b/main/templatetags/cdn.py index 5cb12fcf..b91553ed 100644 --- a/main/templatetags/cdn.py +++ b/main/templatetags/cdn.py @@ -11,7 +11,8 @@ def jquery(): link = 'https://ajax.googleapis.com/ajax/libs/jquery/' \ '%s/jquery.min.js' % version else: - link = '/media/jquery-%s.min.js' % version + static_url = getattr(settings, 'STATIC_URL', '/static/') + link = '%sjquery-%s.min.js' % (static_url, version) return '<script type="text/javascript" src="%s"></script>' % link @register.tag |