##// END OF EJS Templates
javascript: add default value for js generate ini option
dan -
r264:1372c5bb default
parent child Browse files
Show More
@@ -82,7 +82,7 b' def load_environment(global_conf, app_co'
82
82
83 config['routes.map'] = make_map(config)
83 config['routes.map'] = make_map(config)
84
84
85 if asbool(config['generate_js_files']):
85 if asbool(config.get('generate_js_files', 'false')):
86 jsroutes = config['routes.map'].jsroutes()
86 jsroutes = config['routes.map'].jsroutes()
87 jsroutes_file_content = generate_jsroutes_content(jsroutes)
87 jsroutes_file_content = generate_jsroutes_content(jsroutes)
88 jsroutes_file_path = os.path.join(
88 jsroutes_file_path = os.path.join(
General Comments 0
You need to be logged in to leave comments. Login now