Merge pull request #4842 from acardinale/master

Added new core component for topic with tid
This commit is contained in:
Barış Soner Uşaklı
2016-08-07 01:02:59 +03:00
committed by GitHub

View File

@@ -10,6 +10,9 @@ define('components', function() {
return $('[component="topic/teaser"]');
}
},
'topic': function(name, value) {
return $('[component="topic"][data-' + name + '="' + value + '"]');
},
'post': function(name, value) {
return $('[component="post"][data-' + name + '="' + value + '"]');
},
@@ -63,4 +66,4 @@ define('components', function() {
};
return components;
});
});