Skip to content

Instantly share code, notes, and snippets.

@frankie-loves-jesus
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frankie-loves-jesus/d64c9ec7838ccd1cfae9 to your computer and use it in GitHub Desktop.
Save frankie-loves-jesus/d64c9ec7838ccd1cfae9 to your computer and use it in GitHub Desktop.

jQuery Mobile infinite scroll + Rails app

Uses Kaminari for pagination.

Problem: Duplicated duplicated items every now and then. When going from page to page manually without the JS, there are no duplicated items.

Live app: http://runnable.com/U_Kgwes7l3URYNwa/jqm-infinite-scroll-with-rails

  1. Click Run
  2. In the following page, click the #output-popout icon in the header to open app without Runnable controls
  3. Enter the Default forum
// app/assets/javascripts/application.js
var isLoading;
$.fn.getNextPage = function() {
// Find next page
var url = globalVar.activePage.find('.pagination a').attr('href');
// Proceed if next page is found
if(url) {
isLoading = true;
// Fetch next page as raw HTML
$.get(url, function(data) {
// Update pagination link
globalVar.activePage.find('.pagination').remove();
$(data).find('.pagination').appendTo(globalVar.activePage.find('.ui-content .forum'));
// Find and insert new content
$(data).find('.topic').appendTo('table.topics tbody');
isLoading = false;
});
}
}
var globalVar = {};
$(document).on('pagecontainershow', function() {
globalVar.activePage = $.mobile.pageContainer.pagecontainer('getActivePage');
});
$(document).on('scrollstop', function() {
var contentHeight = globalVar.activePage.find('.ui-content').outerHeight(),
screenHeight = $(window).height(),
scrollStart = $(window).scrollTop(),
scrollEnd = contentHeight - screenHeight;
if(scrollStart >= scrollEnd - 350 && !isLoading) {
console.log('Bottom detected - fetching next page...');
$.fn.getNextPage();
}
});
<!-- app/views/forem/forums/show.html.erb -->
<div class='forum'>
[...snip...]
<tbody>
[...snip...]
<%= render @topics %>
</tbody>
</table>
<div class="pagination">
<%= link_to_next_page @topics, 'Next Page' %>
</div>
</div>
<!-- This output has been sorted in Vim with `:sort` -->
<a href="/default/topics/test-0116ec7d-6102-494d-8555-5380a36177e5?page=1#post-183" class="ui-link">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-014ef09b-8412-46b6-b3a8-f653c98de18d?page=1#post-147">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-04bc4ce2-20bf-425f-9665-3ce81454e259?page=1#post-178">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-06079cda-8ff8-49dc-8641-54032f72b939?page=1#post-184" class="ui-link">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-08623df0-c9fc-4e06-b082-cebd22ebb454?page=1#post-100">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-09f29daa-1e14-4fc1-bc1f-b52f896f0293?page=1#post-159">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-0b36d2bc-5b47-4d47-bc0e-ee2ec1c2f5bb?page=1#post-174">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-0bc70f6f-c6ee-48ea-a0f4-fe2bfe51c701?page=1#post-156">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-0c59d1a9-d08c-40a2-8043-30e55e69df86?page=1#post-110">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-0d0962be-013e-4169-a180-94219e055882?page=1#post-107">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-0eee4b0b-1d9e-418b-ba21-962befebdd6e?page=1#post-196" class="ui-link">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-107453f1-21ec-432d-8190-f99439734047?page=1#post-148">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-11b8c65e-e17e-441e-812b-84e87060ee55?page=1#post-137">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-11b8c65e-e17e-441e-812b-84e87060ee55?page=1#post-137">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-163a30cd-1ef1-4474-a49e-0a701ca3dc66?page=1#post-91">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-1760e9d9-d10a-47c7-84d2-bff293d20b22?page=1#post-143">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-17bc5621-942a-4fbb-8b8e-a9d359c3d553?page=1#post-82">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-1e15497c-4892-4390-99b0-1233829d02be?page=1#post-139">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-1e15497c-4892-4390-99b0-1233829d02be?page=1#post-139">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-1ff3ced2-69a9-4fc5-b7ce-ff15f1ad1bf5?page=1#post-162">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-25883a1d-e980-41c8-aa9d-cffce5d8a833?page=1#post-172">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-26af247e-ea59-493d-9c56-cd23b267db29?page=1#post-142">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-296a6548-5f10-4750-9043-454d0701b3f6?page=1#post-96">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-29b24e79-34e6-4097-bc6f-aa576f0e9547?page=1#post-182" class="ui-link">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-2a3ba9d0-c031-4c36-b244-0bf12b13dce0?page=1#post-191" class="ui-link">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-2df6b986-97f4-40dc-91d2-37e1545e91fc?page=1#post-89">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-3013ce82-8b82-425c-9f87-b56e8966e965?page=1#post-84">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-3254007e-c333-4e5f-b501-29a7f8ec7c93?page=1#post-134">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-3254007e-c333-4e5f-b501-29a7f8ec7c93?page=1#post-134">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-327989e7-aa93-4432-9cb4-f32cc3ac088f?page=1#post-86">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-32d424ac-a869-452d-8af3-ad05d94faa74?page=1#post-144">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-34917098-3b97-4afa-9a64-454b2de8082b?page=1#post-153">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-34a12a26-26fb-4366-8432-4485b0fca320?page=1#post-140">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-34a12a26-26fb-4366-8432-4485b0fca320?page=1#post-140">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-370c8bd8-f5d1-4e25-aac2-72500e9dd5ac?page=1#post-152">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-3a9a7eb1-41ce-4bc2-82ed-99acedd7278c?page=1#post-160">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-3af79242-ed98-4fcb-841e-573af7e5c7cd?page=1#post-165">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-3daa8e66-8db6-4355-a9e0-87242be6dbf1?page=1#post-195" class="ui-link">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-460849a9-38a6-4753-b243-a5a16bd615e3?page=1#post-122">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-460849a9-38a6-4753-b243-a5a16bd615e3?page=1#post-122">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-462f85e8-fe5c-415f-bc06-fb110b5bcfa4?page=1#post-194" class="ui-link">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-4861d343-e567-4c7c-a23c-ac2b9284ce32?page=1#post-95">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-4dfa085a-f956-4cd5-9e25-660bdb346350?page=1#post-185" class="ui-link">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-4e06f9cd-1c4d-4577-9fe1-93dd2861fac0?page=1#post-158">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-4ef7e287-85a7-41ed-9084-eee037de9cfa?page=1#post-125">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-4ef7e287-85a7-41ed-9084-eee037de9cfa?page=1#post-125">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-4f40f08d-a519-4cfc-bf73-df1dff49aa1e?page=1#post-169">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-507484b5-1228-4af5-99b7-79097b62c348?page=1#post-175">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-51dbb433-2293-424b-b5f0-3aa050deaf93?page=1#post-97">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-52fa66ea-80c8-428b-868d-e9f82db4ff3e?page=1#post-99">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-556879ee-4dce-413c-b6f5-eacd12dcbd1b?page=1#post-132">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-556879ee-4dce-413c-b6f5-eacd12dcbd1b?page=1#post-132">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-5a9d6df9-bff6-40fe-931e-0b2cb348529f?page=1#post-121">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-5a9d6df9-bff6-40fe-931e-0b2cb348529f?page=1#post-121">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-5ae859d0-9c98-411b-a704-81f1d62984ce?page=1#post-127">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-5ae859d0-9c98-411b-a704-81f1d62984ce?page=1#post-127">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-5b16e1da-0a60-4bf4-91b4-4ccbef6422d5?page=1#post-155">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-5b822f41-427a-422d-a273-3a72255f7741?page=1#post-128">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-5b822f41-427a-422d-a273-3a72255f7741?page=1#post-128">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-60124805-9eff-4c2c-a486-76460df18d5b?page=1#post-193" class="ui-link">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-63cd3c93-feab-4568-a3a2-bd442b18085e?page=1#post-138">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-63cd3c93-feab-4568-a3a2-bd442b18085e?page=1#post-138">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-66a6474a-2480-43fc-907c-fe94c1f7bc76?page=1#post-124">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-66a6474a-2480-43fc-907c-fe94c1f7bc76?page=1#post-124">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-66a70219-e15a-4ee4-b9d3-10ffa390795a?page=1#post-151">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-67533838-5364-4563-b688-d8fac4bff080?page=1#post-187" class="ui-link">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-67c3e950-aa19-442f-a6ec-4cd6f01c254a?page=1#post-154">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-6ab19966-565e-4e01-b9e3-5f355472aa1c?page=1#post-188" class="ui-link">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-6c48bc0c-92ad-4d5b-8bdb-b57d26319908?page=1#post-161">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-6cc2398d-060a-4057-8b08-c96c77a50b4f?page=1#post-92">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-6d130335-2cfd-443f-b6b3-7db0f7690dd4?page=1#post-136">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-6d130335-2cfd-443f-b6b3-7db0f7690dd4?page=1#post-136">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-6d8f8a16-447a-46ce-bcbb-d9724be64b99?page=1#post-141">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-6f2be0ab-a868-48dd-88b7-c784d7c13654?page=1#post-133">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-6f2be0ab-a868-48dd-88b7-c784d7c13654?page=1#post-133">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-70828cfa-8a1c-4acc-b2ba-31206998057e?page=1#post-93">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-716a7b60-51f2-4f65-a75e-d6e82a23c775?page=1#post-98">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-7463afa8-160c-4d91-9169-657b91aedc2e?page=1#post-119">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-74a3b552-26a5-4dfb-bafa-b3b66c68c289?page=1#post-200" class="ui-link">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-795600eb-69a7-401f-b9f1-8aa41e9c9d57?page=1#post-129">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-795600eb-69a7-401f-b9f1-8aa41e9c9d57?page=1#post-129">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-79a19cb4-ab67-442a-ab8d-0b7cac25f9cc?page=1#post-123">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-79a19cb4-ab67-442a-ab8d-0b7cac25f9cc?page=1#post-123">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-7d8762c8-7a35-4970-8919-143176d9bb19?page=1#post-145">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-7eb76d04-b4eb-482c-b755-b678fe6f311b?page=1#post-106">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-85067f95-8000-4de2-90d6-f3e1eb09c77f?page=1#post-94">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-8732d6b6-0063-40c7-9b20-04ff3a842af3?page=1#post-90">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-90e6ec24-cee6-45e0-9c53-a4b01648765c?page=1#post-87">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-97358543-2a83-4705-9f99-369289b90d07?page=1#post-164">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-99f77f03-427f-46d0-a1c7-12e8542b54bd?page=1#post-190" class="ui-link">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-9d521871-4bcf-4e42-a333-c4d8a77b206c?page=1#post-108">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-ae689777-d95d-438e-a8d3-5e590aa1d0ce?page=1#post-177">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-af193e74-2be6-4519-9257-55b265bce321?page=1#post-111">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-b012d194-9e12-4722-9bdc-7d1d4bf74041?page=1#post-168">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-b37092c9-3b7e-4c9c-953e-db8ed9ea14e4?page=1#post-83">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-b67335a9-754d-4ef4-af82-420eab5181ce?page=1#post-176">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-b734212b-5489-4738-9ea4-60fedfcd1c18?page=1#post-171">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-b8a24f5e-e8c5-4547-b727-893e295339c8?page=1#post-130">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-b8a24f5e-e8c5-4547-b727-893e295339c8?page=1#post-130">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-b9b16adb-f4ff-42d4-a7b4-fd40f9f77f8e?page=1#post-150">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-b9b58e3b-38f2-46dd-9362-a0770c33e95d?page=1#post-118">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-bc57b4a2-bc96-4110-9c6d-e67537dce0d5?page=1#post-116">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-c163267c-2d72-40bb-8da8-1c59395862e8?page=1#post-85">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-c18484ee-6ad0-4f00-96e2-af01f8d709b5?page=1#post-198" class="ui-link">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-c204f288-2f7d-4cf3-9650-b7bd77146a5b?page=1#post-180">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-c25528bf-d946-4eed-9f05-d958cab2af54?page=1#post-163">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-c57cb7fc-513d-4604-9d01-f7752d22adee?page=1#post-104">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-c75a5b4e-bab7-49e3-8a3e-33bde1ad5d41?page=1#post-120">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-c7bc37c0-89b1-47fd-bce5-372064fd58e3?page=1#post-113">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-c7d4f364-1171-4dd5-879a-578d41d5bb50?page=1#post-88">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-c9490e19-bc33-4cff-a91a-27b053d42eee?page=1#post-179">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-cac712c7-3217-4ebe-81c7-c6b4e05413fb?page=1#post-115">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-cddf9322-1f98-4b1a-bbd2-3bd154e41065?page=1#post-105">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-ce17cb18-4bb1-47fa-9004-85351a117acc?page=1#post-170">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-ce444569-3f4d-4e36-a7fa-7d330e0ee636?page=1#post-114">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-cf4a66d1-4304-4aed-be5d-6ff1bacb9c1d?page=1#post-197" class="ui-link">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-d00238eb-a718-4ec5-97ce-25172de427bc?page=1#post-81">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-d01de2d5-81bd-499d-adfe-7272ceb9e5c1?page=1#post-135">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-d01de2d5-81bd-499d-adfe-7272ceb9e5c1?page=1#post-135">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-d0dd28ce-09e1-4e15-aa78-22b5a9b7c798?page=1#post-103">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-d34cc340-b800-442e-8426-7f1a1d9a5b8e?page=1#post-199" class="ui-link">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-d4170a9e-03d7-461f-9c8e-00fb5ed9c4e5?page=1#post-186" class="ui-link">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-d8879afd-b40c-41e8-958d-9e8cde6fb1dc?page=1#post-109">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-dabbbb04-7e41-4d0a-9cd8-0b465f4a74df?page=1#post-102">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-df5b2a83-2fa7-4395-aa35-6809f2b362bd?page=1#post-166">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-dfeccdfc-e4c9-428b-80d8-aa8d6139eba9?page=1#post-101">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-e0d87328-4843-403a-8966-aeff14e4fc10?page=1#post-149">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-e1f0b094-0715-4578-be56-aed66abd36f1?page=1#post-131">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-e1f0b094-0715-4578-be56-aed66abd36f1?page=1#post-131">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-e24efdfa-da67-4251-97dc-c271aebd5eaf?page=1#post-189" class="ui-link">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-e828f9ba-17e2-4750-8fbf-3a716f13cff1?page=1#post-192" class="ui-link">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-ea5b4654-d2b6-44b7-9b48-54795d8cb675?page=1#post-167">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-ef7613bf-0998-4ab0-b2a4-18ccdadcd989?page=1#post-112">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-f06394ad-554e-4a56-8864-014c05e0941e?page=1#post-117">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-f8084a25-6447-44a8-9585-a64d26ffb8c5?page=1#post-157">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-f9b7ad94-5540-40aa-9324-bde9b56f1023?page=1#post-146">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-fd6d6a8d-0c6f-4cb3-9b1e-58817654beb5?page=1#post-173">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-ff43c8b8-e685-42cc-b3b5-0ea24be332be?page=1#post-126">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-ff43c8b8-e685-42cc-b3b5-0ea24be332be?page=1#post-126">8 days ago by admin@example.com</a> </td>
<a href="/default/topics/test-ffdf7d5c-dfe4-472f-ad15-267786fb5d39?page=1#post-181" class="ui-link">8 days ago by admin@example.com</a> </td>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment