You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
440 B
10 lines
440 B
require(['jquery', 'splunkjs/mvc/simplexml/ready!'], function($) {
|
|
$("[id*=setWidth]").each(function() {
|
|
var match = /setWidth_(\d+(?:_\d+)?)/.exec($(this).attr('id'));
|
|
if (match[1]) {
|
|
$(this).closest(".dashboard-cell").css('width', match[1].replace("_", ".") + '%');
|
|
}
|
|
});
|
|
// Force visualizations (esp. charts) to be redrawn with their new size
|
|
$(window).trigger('resize');
|
|
}); |