Apply widgets initially after a short delay

This commit is contained in:
Mottie 2014-04-23 18:52:07 -05:00
parent f24f15e10c
commit 82a8a6852a

View File

@ -1016,7 +1016,9 @@
setHeadersCss(table);
if (c.initWidgets) {
// apply widget format
ts.applyWidget(table, false);
setTimeout(function(){
ts.applyWidget(table, false);
}, 0);
}
}