Commit 07065439 authored by Van's avatar Van

🐛 fix #12681

parent 8f722db8
...@@ -85,7 +85,7 @@ var soloKanbanniang = { ...@@ -85,7 +85,7 @@ var soloKanbanniang = {
$.each(result.mouseover, function(index, tips) { $.each(result.mouseover, function(index, tips) {
$(document).on('mouseover', tips.selector, function() { $(document).on('mouseover', tips.selector, function() {
soloKanbanniang.showMessage( soloKanbanniang.showMessage(
tips.text.replace('{text}', $(this).text()).substr(0, 24), 3000); tips.text.replace('{text}', $.trim($(this).text()).substr(0, 42)), 3000);
}); });
}); });
$.each(result.click, function(index, tips) { $.each(result.click, function(index, tips) {
......
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