|
1
|
jQuery('document').ready(function ($) { |
|
2
|
$("#view_template .inside").resizable({ |
|
3
|
alsoResize: ".CodeMirror", resize: function () { |
|
4
|
if (typeof htmleditor !== 'undefined') { |
|
5
|
htmleditor.refresh(); |
|
6
|
$('#view_template .inside,.CodeMirror').css('width', 'auto'); |
|
7
|
} |
|
8
|
} |
|
9
|
}); |
|
10
|
}); |
|
11
|
|