Guest User

Untitled

a guest
Dec 5th, 2016
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. function addPic(file) {
  3.     editor = CKEDITOR.currentInstance;
  4.     if(editor !== undefined) {
  5.         if ( editor.mode == 'wysiwyg' ) {
  6.             editor.insertHtml('<img class="img-responsive" src="'+file+'">');
  7.         }
  8.         else alert( 'В режиме кода вставка недоступна');
  9.     } else {
  10.         alert('Установите курсор в редакторе на то место, куда вы хотите добавить картинку');
  11.     }
  12.     return false;
  13. }
  14. </script>
Advertisement
Add Comment
Please, Sign In to add comment