Results 4 comments of Quan Chu

if you have child element inside your TH, you need to set the width on the child element instead of setting the width on your TH this is my code...

try this too var setWidth = function () { marginTop(height()); //checking IE11 var isIE = /*@cc_on!@*/false || !!document.documentMode; if (isIE) { var border = parseFloat(style.borderRightWidth, 10) + parseFloat(style.borderLeftWidth, 10); var...

I've found a better way to handle IE11 ``` //checking IE11 var isIE = /*@cc_on!@*/false || !!document.documentMode; if (isIE) { clone.css({ boxSizing: 'content-box' }); } clone.css({ width: style.width, minWidth: style.width,...

So any suggestions for this? I tried to wrap it in a div with ng-include but it doesnt seems to work either.