don't error if topicsContainer is not set

This commit is contained in:
Baris Usakli
2017-06-27 14:34:37 -04:00
parent e0dc47f883
commit 4890731444

View File

@@ -39,6 +39,9 @@ define('topicSelect', ['components'], function (components) {
TopicSelect.getSelectedTids = function () {
var tids = [];
if (!topicsContainer) {
return tids;
}
topicsContainer.find('[component="category/topic"].selected').each(function () {
tids.push($(this).attr('data-tid'));
});
@@ -46,8 +49,10 @@ define('topicSelect', ['components'], function (components) {
};
TopicSelect.unselectAll = function () {
topicsContainer.find('[component="category/topic"].selected').removeClass('selected');
topicsContainer.find('[component="topic/select"]').toggleClass('fa-check-square-o', false).toggleClass('fa-square-o', true);
if (topicsContainer) {
topicsContainer.find('[component="category/topic"].selected').removeClass('selected');
topicsContainer.find('[component="topic/select"]').toggleClass('fa-check-square-o', false).toggleClass('fa-square-o', true);
}
};
function selectRange(clickedTid) {