mirror of
https://github.com/monstra-cms/monstra.git
synced 2025-07-09 15:46:24 +02:00
18 lines
387 B
JavaScript
18 lines
387 B
JavaScript
if (typeof $.monstra == 'undefined') $.monstra = {};
|
|
|
|
$.monstra.snippets = {
|
|
|
|
init: function() { },
|
|
|
|
showEmbedCodes: function(name) {
|
|
$('#shortcode').html('{snippet get="'+name+'"}');
|
|
$('#phpcode').html('<?php echo Snippet::get("'+name+'"); ?>');
|
|
$('#embedCodes').modal();
|
|
}
|
|
|
|
};
|
|
|
|
|
|
$(document).ready(function(){
|
|
$.monstra.snippets.init();
|
|
}); |