Tabulator ウィンドウの高さに合わせる

Tabulator は、レスポンシブだが、ウィンドウの高さに合わせた表の高さ height までは
調整してくれない。
自前でやるしかないのか。。
サンプル

$('#example-table').tabulator({
   height: window.innerHeight - 70,
   layout:"fitDataFill",
   columns:[
      // 行データ 
   ],
});

$(window).on('load resize', function(){
    $('#example-table').prop('style', "height: " + (window.innerHeight - 70) + "px");
});