Skip to content

Commit

Permalink
solve height issue
Browse files Browse the repository at this point in the history
  • Loading branch information
martec committed Oct 13, 2014
1 parent 84ab007 commit 2308c01
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions inc/plugins/quickadveditor.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function quickadveditor_info ()
"website" => "",
"author" => "martec",
"authorsite" => "",
"version" => "5.5.1",
"version" => "5.5.2",
"guid" => "",
"compatibility" => "18*"
);
Expand Down Expand Up @@ -189,7 +189,7 @@ function quickadveditor_activate()
\$.jGrowl(\'<img src=\"images/spinner_big.gif\" />\');
ed_id = \$(this).attr(\'id\');
var pid = ed_id.replace( /[^0-9]/g, \'\');
\$(\'#quickedit_\'+pid).height({\$mybb->settings[\'quickadveditor_qued_heigh\']}+\'px\');
\$(\'#quickedit_\'+pid).height(\'{\$mybb->settings[\'quickadveditor_qued_heigh\']}px\');
setTimeout(function() {
\$(\'#quickedit_\'+pid).sceditor(opt_editor);
if (\$(\'#quickedit_\'+pid).sceditor(\'instance\')) {
Expand Down Expand Up @@ -222,7 +222,7 @@ function quickadveditor_activate()
\$(document).ready(function() {
\$(\'#message\').height({\$mybb->settings[\'quickadveditor_qurp_heigh\']}+\'px\');
\$(\'#message\').height(\'{\$mybb->settings[\'quickadveditor_qurp_heigh\']}px\');
var link_can = document.querySelector(\"link[rel=\'canonical\']\");
\$(\'#message\').sceditor(opt_editor);
MyBBEditor = $(\'#message\').sceditor(\'instance\');
Expand Down Expand Up @@ -340,7 +340,7 @@ function quickadveditor_activate()
});
\$(document).ready(function() {
\$(\'#message\').height({\$mybb->settings[\'quickadveditor_qurp_heigh\']}+\'px\');
\$(\'#message\').height(\'{\$mybb->settings[\'quickadveditor_qurp_heigh\']}px\');
\$(\'#message\').sceditor(opt_editor);
MyBBEditor = $(\'#message\').sceditor(\'instance\');
{\$sourcemode}
Expand Down

0 comments on commit 2308c01

Please sign in to comment.