Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#1 2021-02-10 06:10:05

alivato
Member
Registered: 2011-03-31
Posts: 151

elfinder - hide/don't set dimensition -width, height

Hi

I use tinymce with elfinder
How can I hide dimensition(html) then I upload and paste image?
?
How to make the fields empty or 0? (not asked in html)

I don’t want to specify width and height in html.
I already have it written in CSS

I use plugin: bot_write_tab_customize – Additional js code:

<script type="text/javascript" src="http://site.com/textpattern/js/tinymce/tinymce.min.js"></script>
<script type="text/javascript">
    tinymce.init({
        selector: 'textarea',
        file_picker_callback: elFinderBrowser,
        images_upload_handler: elFinderBrowser,
        menubar: false,
        plugins: ["autolink link image media table code"],      
        toolbar: ["autolink link image media table code"],
        relative_urls: false
    }); 
function elFinderBrowser (callback, value, meta) {
  tinymce.activeEditor.windowManager.open({
    file: 'http://site.com/textpattern/js/elfinder/elfinder.html', // use an absolute path!
    title: 'elFinder 2.1',
    width: 900,  
    height: 450,
    resizable: 'yes'
  }, {
    oninsert: function (file, fm) {
      var url, reg, info;
      // URL normalization
      url = fm.convAbsUrl(file.url);    
      // Make file info
      info = file.name + ' (' + fm.formatSize(file.size) + ')';
      // Provide file and text for the link dialog
      if (meta.filetype == 'file') {
        callback(url, {text: info, title: info});
      }
      // Provide image and alt text for the image dialog
      if (meta.filetype == 'image') {
        callback(url, {alt: info});
      }
      // Provide alternative source and posted for the media dialog
      if (meta.filetype == 'media') {
        callback(url);
      }
    }
  });
  return false;
}
</script>  
<script type="text/javascript">
    $(document).ready(function() {
        //your code here
    });
</script>

Offline

Board footer

Powered by FluxBB