FIX: Edge case attempting to destroy uninitialized tabs

Another edge case very similar to
https://github.com/silverstripe/sapphire/commit/07fb7563273fa82bd93eb255
70571c0a298198e5
This commit is contained in:
Loz Calver 2013-04-09 11:21:54 +01:00
parent ba7dfcfd54
commit 975c6992df

View File

@ -1029,7 +1029,7 @@ jQuery.noConflict();
this._super();
},
onremove: function() {
this.tabs('destroy');
if (this.data('tabs')) this.tabs('destroy');
this._super();
},
redrawTabs: function() {