Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- function addPic(file) {
- editor = CKEDITOR.currentInstance;
- if(editor !== undefined) {
- if ( editor.mode == 'wysiwyg' ) {
- editor.insertHtml('<img class="img-responsive" src="'+file+'">');
- }
- else alert( 'В режиме кода вставка недоступна');
- } else {
- alert('Установите курсор в редакторе на то место, куда вы хотите добавить картинку');
- }
- return false;
- }
- </script>
Advertisement
Add Comment
Please, Sign In to add comment