npm.io
1.0.0 • Published 9 years ago

tinymce-plugin-responsive-image

Licence
MIT
Version
1.0.0
Deps
0
Vulns
0
Weekly
0
Stars
3

tinymce-plugin-responsive-image

A tinyMCE plugin for transforming <img> width from px to percent.

Insert an image to tinyMCE and resize the img's size. It will save and support img's width attribute as percent format.

install

npm install tinymce-plugin-responsive-image

usage

import

You can import the plugin easily as commonjs / es6 modules. (with tsc, webpack, etc)

import 'tinymce-plugin-responsive-image'
require('tinymce-plugin-responsive-image')

Also, you can use some tools like gulp or grunt to copy lib/index.js to anywhere you can visit by browser.

Of course, you can Ctrl + C Ctrl +V by yourself.

setup
window.tinyMCE.init({
    plugins: ['responsiveImage', /* and other plugins */]
});