Skip to content

backstop/tinymce-filepicker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Altered specifically for Backstop.

The changes probably won't be useful to anyone else, as we mostly remove functionality and fire an event which we pick up elsewhere. But if you want it, have at it.

tinymce-filepicker

Filepicker plugin for TinyMCE editor.

Installation

Copy filepicker directory in this repository to TinyMCE's plugins directory.

Live Demo

See the live demo here. Click on 'Claim This Shop' (it's just a demo =) it's okay to claim it) button and you'll see TinyMCE editor in the customize page. You'll see the Filepicker icon on the editor's menu bar besides the unlink icon. Enjoy playing with the editor!

TinyMCE-Filepicker Screenshot

Usage

Include Filepicker's javascript

<script src='//api.filepicker.io/v1/filepicker.js'></script>

Include TinyMCE's javascript

e.g. <script src='js/tiny_mce/tiny_mce.js'></script>

Set your Filepicker's API key

filepicker.setKey('YOUR-FILEPICKER-API-KEY-HERE');

Initialize TinyMCE with Filepicker plugin

e.g.

  <script type='text/javascript'>
    tinyMCE.init({
      schema : 'html5',
      mode   : 'textareas',
      height : '500px',

      plugins : ' filepicker',  // Add filepicker plugin here.

      theme : 'advanced',
      theme_advanced_toolbar_location : 'top',
      theme_advanced_toolbar_align : 'left',
      theme_advanced_statusbar_location : 'bottom',
      theme_advanced_resizing : true,
      theme_advanced_buttons1 : 'save, bold, italic, underline, |, filepicker'  // Add filepicker button here.
    });
  </script>

See example/ for a working example source code.

About

Filepicker plugin for TinyMCE editor.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 97.2%
  • CSS 2.8%