Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- (function () {
- var img = document.getElementsByTagName('img');
- for (var i=img.length; i--;) {
- img[i].className += 'img-responsive';
- }
- })();
- <!--устанавливаем свойство 'auto' для высоты картинки из CKeditor -->
- var classHeight = document.getElementsByClassName('img-responsive');
- for (var i = 0; i < classHeight.length; i++) {
- /*classHeight[i].style.height = 'auto';*/
- classHeight[i].style.height = 'auto';
- classHeight[i].style.width = 400 + 'px';
- }
- </script>
Add Comment
Please, Sign In to add comment