You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nodebb/public/src/components.js

25 lines
822 B
JavaScript

10 years ago
"use strict";
var components = components || {};
(function() {
components.core = {
'post/content': function(pid) {
var el = $('[data-pid="' + pid + '"]').find('[component="post/content"]');
return el.length ? el : $('#content_' + pid); // deprecated after 0.7x
},
'post/header': function(pid) {
var el = $('[data-pid="' + pid + '"]').find('[component="post/header"]');
return el.length ? el : $('#topic_title_' + pid); // deprecated after 0.7x
},
'post/anchor': function(pid) {
var el = $('[data-pid="' + pid + '"]').find('[component="post/anchor"]');
return el.length ? el : $('#post_anchor_' + pid); // deprecated after 0.7x
10 years ago
}
};
components.get = function() {
var args = Array.prototype.slice.call(arguments, 1);
return components.core[arguments[0]].apply(this, args);
};
}());