Skip to content

Commit

Permalink
bugfix: custom renderer reference for input was not correctly passed …
Browse files Browse the repository at this point in the history
…to the javascript-side (it was string-escaped)
  • Loading branch information
Luis Masuelli committed Oct 2, 2013
1 parent 218684c commit e3e137d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jackfrost/widgets.py
Expand Up @@ -80,7 +80,7 @@ def render_jquery_autocomplete(self, attrs):
texto = autocomplete_textinput_template % (
simplejson.dumps(id),
simplejson.dumps(url),
simplejson.dumps(custom_renderer)
custom_renderer
)
return mark_safe(texto)

Expand Down

0 comments on commit e3e137d

Please sign in to comment.