Skip to content

Commit

Permalink
fixes web2py#1407, encouraging a sane default
Browse files Browse the repository at this point in the history
  • Loading branch information
niphlod committed Sep 21, 2016
1 parent 075f493 commit e5355b5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion applications/admin/views/web2py_ajax.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
var w2p_ajax_date_format = "{{=T('%Y-%m-%d')}}";
var w2p_ajax_datetime_format = "{{=T('%Y-%m-%d %H:%M:%S')}}";
var w2p_ajax_disable_with_message = "{{=T('Working...')}}";
var ajax_error_500 = '{{=T.M('An error occured, please [[reload %s]] the page') % URL(args=request.args, vars=request.get_vars) }}'
var ajax_error_500 = "{{=T.M('An error occured, please [[reload %s]] the page') % URL(args=request.args, vars=request.get_vars) }}"
//--></script>
{{
response.files.insert(0,URL('static','js/jquery.js'))
Expand Down
2 changes: 1 addition & 1 deletion applications/examples/views/web2py_ajax.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
var w2p_ajax_confirm_message = "{{=T('Are you sure you want to delete this object?')}}";
var w2p_ajax_date_format = "{{=T('%Y-%m-%d')}}";
var w2p_ajax_datetime_format = "{{=T('%Y-%m-%d %H:%M:%S')}}";
var ajax_error_500 = '{{=T.M('An error occured, please [[reload %s]] the page') % URL(args=request.args, vars=request.get_vars) }}'
var ajax_error_500 = "{{=T.M('An error occured, please [[reload %s]] the page') % URL(args=request.args, vars=request.get_vars) }}"
//--></script>
{{
response.files.insert(0,URL('static','js/jquery.js'))
Expand Down
2 changes: 1 addition & 1 deletion applications/welcome/views/web2py_ajax.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
var w2p_ajax_disable_with_message = "{{=T('Working...')}}";
var w2p_ajax_date_format = "{{=T('%Y-%m-%d')}}";
var w2p_ajax_datetime_format = "{{=T('%Y-%m-%d %H:%M:%S')}}";
var ajax_error_500 = '{{=T.M('An error occured, please [[reload %s]] the page') % URL(args=request.args, vars=request.get_vars) }}'
var ajax_error_500 = "{{=T.M('An error occured, please [[reload %s]] the page') % URL(args=request.args, vars=request.get_vars) }}"
//--></script>
{{
response.files.insert(0,URL('static','js/jquery.js'))
Expand Down

0 comments on commit e5355b5

Please sign in to comment.