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.
17 lines
355 B
JavaScript
17 lines
355 B
JavaScript
'use strict';
|
|
|
|
|
|
define('forum/account/upvoted', ['forum/account/header', 'forum/account/posts'], function (header, posts) {
|
|
var Upvoted = {};
|
|
|
|
Upvoted.init = function () {
|
|
header.init();
|
|
|
|
$('[component="post/content"] img:not(.not-responsive)').addClass('img-responsive');
|
|
|
|
posts.handleInfiniteScroll('account/upvoted');
|
|
};
|
|
|
|
return Upvoted;
|
|
});
|