2014-06-15 19:30:04 -04:00
|
|
|
|
(function ($, document) {
|
|
|
|
|
|
2014-06-17 12:03:14 -04:00
|
|
|
|
function reloadItems(page) {
|
|
|
|
|
|
2014-06-23 12:05:19 -04:00
|
|
|
|
Sections.loadLatestChannelItems($(".items", page), Dashboard.getCurrentUserId());
|
2014-06-15 19:30:04 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$(document).on('pagebeforeshow', "#channelsLatestPage", function () {
|
|
|
|
|
|
|
|
|
|
reloadItems(this);
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
})(jQuery, document);
|