Merge pull request #5339 from loopback0/master

Allow text selection on /unread
v1.18.x
Barış Soner Uşaklı 8 years ago committed by GitHub
commit e225f318bb

@ -10,8 +10,8 @@ define('topicSelect', ['components'], function (components) {
TopicSelect.init = function (onSelect) { TopicSelect.init = function (onSelect) {
topicsContainer = $('[component="category"]'); topicsContainer = $('[component="category"]');
topicsContainer.on('selectstart', function () { topicsContainer.on('selectstart', '[component="topic/select"]', function (ev) {
return false; ev.preventDefault();
}); });
topicsContainer.on('click', '[component="topic/select"]', function (ev) { topicsContainer.on('click', '[component="topic/select"]', function (ev) {

Loading…
Cancel
Save