Skip to content

Commit 3083d46

Browse files
committed
Fix vertical tabs in Foundation 5 theme. Fixes #401
1 parent 94caf3a commit 3083d46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/themes/foundation.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ JSONEditor.defaults.themes.foundation5 = JSONEditor.defaults.themes.foundation.e
191191
},
192192
getTabHolder: function() {
193193
var el = document.createElement('div');
194-
el.innerHTML = "<dl class='tabs vertical'></dl><div class='tabs-content'></div>";
194+
el.innerHTML = "<dl class='tabs vertical'></dl><div class='tabs-content vertical'></div>";
195195
return el;
196196
},
197197
getTab: function(text) {

0 commit comments

Comments
 (0)