无编辑摘要 |
无编辑摘要 标签:已被回退 |
||
第27行: | 第27行: | ||
// 每秒刷新 | // 每秒刷新 | ||
setInterval(updateMaintenanceTimer, 1000); | setInterval(updateMaintenanceTimer, 1000); | ||
// 动态加载{{CSS}}模板嵌入的样式 | |||
$(document).ready(function() { | |||
$('.css-embed').each(function() { | |||
var cssContent = $(this).text(); | |||
$('<style>').text(cssContent).appendTo('head'); | |||
}); | |||
}); |