Skip to content

Commit

Permalink
Merge pull request #50 from dolkensp/develop
Browse files Browse the repository at this point in the history
Don't process empty items
  • Loading branch information
peter-dolkens authored Nov 28, 2019
2 parents 46b8e01 + df99bdc commit e41846a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/web_resources/HangarXPLOR.ProcessPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ HangarXPLOR.ProcessPage = function($page, pageNo)

var $items = $('.list-items > li', $page);

$items.each(HangarXPLOR.ProcessItem);
if (!isEmpty) $items.each(HangarXPLOR.ProcessItem);

if (isEmpty || $items.length < 10)
{
Expand Down

0 comments on commit e41846a

Please sign in to comment.