mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-03-21 22:17:48 +01:00
Fix usage of deprecated size() method
This commit is contained in:
parent
e7d076d699
commit
a0c99574ba
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
jQuery ->
|
jQuery ->
|
||||||
if $('#pagination').size() > 0
|
if $('#pagination').length > 0
|
||||||
$('#pagination').hide()
|
$('#pagination').hide()
|
||||||
loading_posts = false
|
loading_posts = false
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue