|
|
|
@ -450,6 +450,9 @@
|
|
|
|
|
height: '560px',
|
|
|
|
|
//fileManagerJson:'/js/kcfinder/browse.php',
|
|
|
|
|
//allowFileManager:true,
|
|
|
|
|
afterCreate: function() {
|
|
|
|
|
editor.readonly(<?php echo(get_meta($information->ic_id, 'AMP_BODY_PC_STATUS') === 'yes' ? 'true' : 'false'); ?>);
|
|
|
|
|
},
|
|
|
|
|
filterMode: false,
|
|
|
|
|
allowImageUpload: false,
|
|
|
|
|
items: [
|
|
|
|
@ -465,9 +468,6 @@
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//新闻日历
|
|
|
|
|
$(function () {
|
|
|
|
|
$("#meta_news_createdate").datepicker({
|
|
|
|
@ -557,7 +557,13 @@
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
$('#PcAmp input').on('change', function(){
|
|
|
|
|
var checked = $(this).is(':checked');
|
|
|
|
|
checked ? meta('save', '<?php echo $information->ic_id; ?>', 'AMP_BODY_PC_STATUS', 'yes') : meta('save', '<?php echo $information->ic_id; ?>', 'AMP_BODY_PC_STATUS', 'no');
|
|
|
|
|
if(checked) {
|
|
|
|
|
meta('save', '<?php echo $information->ic_id; ?>', 'AMP_BODY_PC_STATUS', 'yes');
|
|
|
|
|
editor.readonly(true);
|
|
|
|
|
} else {
|
|
|
|
|
meta('save', '<?php echo $information->ic_id; ?>', 'AMP_BODY_PC_STATUS', 'no');
|
|
|
|
|
editor.readonly(false);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
<?php } ?>
|
|
|
|
|