diff options
author | Dan McGee <dan@archlinux.org> | 2010-10-26 14:03:28 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-10-26 14:03:28 -0500 |
commit | 576118c45ca4605eaf874fba3d95969c08a7c7d4 (patch) | |
tree | 0e5cd43b87b934e94a457c7b2728f40f7bf20c74 /main | |
parent | a5e8c5a8d5a47c06523cc45ce40eec6e844acade (diff) |
Upgrade to jQuery 1.4.3
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'main')
-rw-r--r-- | main/templatetags/cdn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/templatetags/cdn.py b/main/templatetags/cdn.py index ff45e524..96181c16 100644 --- a/main/templatetags/cdn.py +++ b/main/templatetags/cdn.py @@ -13,7 +13,7 @@ class JQueryNode(template.Node): # serve content from HTTPS instead. secure = 'secure' in context and context['secure'] prefixes = { False: 'http', True: 'https' } - version = '1.4.2' + version = '1.4.3' oncdn = getattr(settings, 'CDN_ENABLED', True) if oncdn: jquery = '%s://ajax.googleapis.com/ajax/libs/jquery/' \ |