ts-website/js/script.js

11 lines
436 B
JavaScript
Raw Normal View History

2016-06-28 21:18:59 +00:00
$(function () {
$('[data-toggle="tooltip"]').tooltip({"html": true})
})
$('.news-body').readmore({
speed: 500,
collapsedHeight: 300,
2016-07-25 14:14:04 +00:00
moreLink: '<button type="button" class="btn btn-dark"><i class="fa fa-plus-circle" aria-hidden="true"></i> ' + textShowMore + '</button>',
lessLink: '<button type="button" class="btn btn-dark"><i class="fa fa-minus-circle" aria-hidden="true"></i> ' + textShowLess + '</button>'
2016-06-28 21:18:59 +00:00
});