Quote:
Originally Posted by rohirrim
my video insert popup box is too big really too big 
|
What you are asking has nothing to do with "@Marcos modification".
-------------------------------------------------------------
Simplistic fix
--------------------------------------------------------------
Modify the ckeditor plugin:
/clientscript/ckeplugins/videotag/dialogs/videotag.js
Find: Line 34
Code:
dialog_html += '<a target="_blank" href="'+url+'">'+name+'</a> ';
Replace: Line 34
Code:
dialog_html += '<a target="_blank" href="'+url+'">'+name+'</a><br />';
--------------- Added 21 Apr 2014 at 17:34 ---------------
-------------------------------------
Better fix, two column format.
-------------------------------------
Modify the ckeditor plugin:
/clientscript/ckeplugins/videotag/dialogs/videotag.js
Find: Line 34 and 35
Code:
dialog_html += '<a target="_blank" href="'+url+'">'+name+'</a> ';
}
Replace:
Code:
if (Math.abs(i + 1) % 2 == 1) {
dialog_html += '<span style="width:50%;float:left;"><a style="float:left;margin-left:10px;" target="_blank" href="'+url+'">'+name+'</a></span>';
} else {
dialog_html += '<span style="width:50%;clear:right;float:right"><a style="float:left;" target="_blank" href="'+url+'">'+name+'</a></span><br />';
}
}
dialog_html = '<div style="width:300px;clear:both;"' + dialog_html + '</div>';
I hope that helps.