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.
 
 
 

16 lines
350 B

<%
var pf = [];
if (item.display) {
item.display.forEach(function(p){
pf.push(p);
});
} else {
pf = ['desktop', 'mobile'];
}
if (where == 'sidebar') {
page.widget_style = theme.style.sidebar.effect.join(' ');
} else if (where == 'body') {
page.widget_style = theme.style.body.effect.join(' ');
}
page.widget_platform = pf.join(' ');
%>