1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Author: <debacle@debian.org>
Description: fix paths for Debian package
--- a/code_comments/web.py 2013-03-24 21:10:24.941532037 +0100
+++ b/code_comments/web.py 2013-03-24 21:12:16.417538556 +0100
@@ -90,8 +90,8 @@
add_script(req, 'code-comments/underscore-min.js')
add_script(req, 'code-comments/backbone-min.js')
# jQuery UI includes: UI Core, Interactions, Button & Dialog Widgets, Core Effects, custom theme
- add_script(req, 'code-comments/jquery-ui/jquery-ui.js')
- add_stylesheet(req, 'code-comments/jquery-ui/trac-theme.css')
+ add_script(req, 'code-comments/jquery-ui.js')
+ add_stylesheet(req, 'code-comments/trac-theme.css')
add_script(req, 'code-comments/jquery.ba-throttle-debounce.min.js')
add_script(req, 'code-comments/code-comments.js')
add_script_data(req, {'CodeComments': js_data})
|