Skip to content
Snippets Groups Projects
Commit 07b73555 authored by Carsten  Rose's avatar Carsten Rose
Browse files

QMORE: change symbols from '..more' / '..less' to '...' / '<<'

parent a8788eda
No related branches found
No related tags found
No related merge requests found
Pipeline #2626 passed
......@@ -22,9 +22,9 @@ var QfqNS = QfqNS || {};
// Hide long text and append "more.." button
$(document).ready(function () {
var more = 'more..';
var less = 'less..';
var moreButtonHtml = '<button class="btn btn-link" style="outline-width: 0px;">' + more + '</button>';
var more = '...';
var less = '<<';
var moreButtonHtml = '<button class="btn btn-link" type="button" style="outline-width: 0px;">' + more + '</button>';
var moreButton = $(moreButtonHtml).insertAfter('span.qfq-more-text');
moreButton.click(function () {
var moreText = $(this).siblings('span.qfq-more-text');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment