diff options
author | mrburns <m.cramet@gmail.com> | 2015-05-08 10:20:27 +0200 |
---|---|---|
committer | mrburns <m.cramet@gmail.com> | 2015-05-08 10:20:27 +0200 |
commit | 5c63e1015d54098e56652f07d4ce2861e52e75f9 (patch) | |
tree | a31cc22779af204d1a1a96e3d142166feefcd232 | |
parent | c08baee0855807d24a1b86adfcea86d0731e2a3a (diff) |
Add app sub url for color picker js lib inclusion
Currently, the js file doesn't take into account the possibility of a sub url being used (wich is my case :) wich prevents its inclusion.
-rw-r--r-- | templates/repo/issue/list.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/issue/list.tmpl b/templates/repo/issue/list.tmpl index 0c817bc1..b64d8b81 100644 --- a/templates/repo/issue/list.tmpl +++ b/templates/repo/issue/list.tmpl @@ -96,7 +96,7 @@ </div> </div> </div> -<script src="/js/bootstrap-colorpicker.min.js"></script> +<script src="{{AppSubUrl}}/js/bootstrap-colorpicker.min.js"></script> <script> $(function(){ $('.label-color-picker').colorpicker({ |