mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 10:49:36 +02:00
Avoid error
This commit is contained in:
parent
afafe7c8cb
commit
d98081a846
1 changed files with 3 additions and 1 deletions
|
@ -1192,7 +1192,9 @@ $(document).ready(function () {
|
|||
}
|
||||
setInterval(function () {
|
||||
if (tabsCategoryDocumentHeightChanged()) {
|
||||
$('.nav-tabs-horizontal').scrollingTabs('refresh');
|
||||
if(typeof $('.nav-tabs-horizontal').scrollingTabs == 'function'){
|
||||
$('.nav-tabs-horizontal').scrollingTabs('refresh');
|
||||
}
|
||||
}
|
||||
}, 1000);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue