$(function () { var cache; var $tabpage=$('.project-wordcloud-pane'); var navid=$tabpage.attr('data-navid'); var widgetselector='.wordcloud'; var $widget=$(widgetselector); $('#'+navid).on('shown.bs.tab', function (e) { console.log('change wordcloud tab'); doWordCloud(cache); }); function doWordCloud(words) { cache=words; if (window.debugmode) console.log('got wordcloud', words); divWidth=$widget.width(); divHeight=$widget.height(); wordcloud_initialize(widgetselector, divWidth, divHeight, "#6B878C", "#5F6368", 10, 80); if (words !== undefined) { wordcloud_parse(JSON.stringify(words),divWidth,divHeight) }; } if ($('#ftrindex').length) { var ftrindex = $('#ftrindex').data('handle'); ftrindex.attachHook('wordcloud', 'wordcloud', doWordCloud); } else { console.log('#ftrindex has no length, abort mission.') } }); /*******************************************************************/ /* ftrtch dino */ /* [type: JS] [file:project-wordcloud] [37.130] DESIGN*/ /*******************************************************************/ /* 0.5 D>D */ /* db 186 */