Merge pull request #5909 from timkung/tabset-opentabfromurl-fix

Fixing TabSet.js error when expected elements are not available
This commit is contained in:
Ingo Schommer 2016-09-26 17:14:04 +13:00 committed by GitHub
commit 53501c73bc

View File

@ -38,7 +38,7 @@
var $trigger;
// Make sure the hash relates to a valid tab.
$.each(this.find('.cms-panel-link'), function () {
$.each(this.find('.ui-tabs-anchor'), function() {
// The hash in in the button's href and there is exactly one tab with that id.
if (this.href.indexOf(hash) !== -1 && $(hash).length === 1) {
$trigger = $(this);
@ -52,7 +52,7 @@
}
// Switch to the correct tab when AJAX loading completes.
$(window).one('ajaxComplete', function () {
$(document).ready(function() {
$trigger.click();
});
},