Add frontend assets and plugin bundles

Add the legacy frontend themes, scripts, and plugin assets required by the main SPOTA interfaces.
This commit is contained in:
Power BI Dev
2026-05-02 10:09:32 +07:00
parent efdb11db3f
commit a52c2a8462
2061 changed files with 513282 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
<link rel="stylesheet" href="../assets/plugins/gritter/css/jquery.gritter.css">
<script src="../assets/plugins/ckeditor/ckeditor.js"></script>
<script src="../assets/plugins/ckeditor/adapters/jquery.js"></script>
<script src="../assets/plugins/gritter/js/jquery.gritter.min.js"></script>
<script>
jQuery(document).ready(function() {
Main.init();
CKEDITOR.disableAutoInline = true;
$('textarea.ckeditor').ckeditor({
height:400
});
$("#ProfilBtnSimpan").click(function(){
$.ajax({
url:'page/profil/act.profil.php',
dataType:'json',
type:'post',
cache:false,
data:$("#profil").serialize(),
success:function(json){
if(json.result){
$.gritter.add({
title:'Sukses',
time: 1000,
text: json.msg
});
}else{
$.gritter.add({
title:'Kesalahan',
time: 5000,
text: json.msg
});
}
}
});
//return false;
});
});
</script>