Commit 598af7f4 authored by longpanda's avatar longpanda
Browse files

Auto remove the redundant trailing slash when set directory path on VentoyPlugson page.

parent 24b05c03
......@@ -743,10 +743,10 @@
<script src="/static/js/jQuery-2.1.4.min.js"></script>
<!-- jquery validate -->
<script src="/static/js/jquery.validate.min.js"></script>
<script src="/static/js/jquery.validate.vtoymethods.js"></script>
<script src="/static/js/jquery.validate.vtoymethods.js?v=100"></script>
<script src="/static/js/vtoy.js"></script>
<script src="/static/js/jquery.vtoy.alert.js"></script>
<script src="/static/js/vtoy.js?v=100"></script>
<script src="/static/js/jquery.vtoy.alert.js?v=100"></script>
<script src="/static/js/md5.min.js"></script>
<!-- Bootstrap 3.3.5 -->
......
......@@ -2,6 +2,13 @@
function ventoy_replace_slash(str) {
var str1 = str.replace(/\\/g, '/');
var str2 = str1.replace(/\/\//g, '/');
if (str2 && str2.length > 0) {
if (str2.substr(-1) === "/") {
return str2.substr(0, str2.length - 1);
}
}
return str2;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment