Posts: 2,530
Threads: 124
Joined: Jul 2011
Reputation:
293
(2014-09-30, 01:11 PM)chriki Wrote: Haha, sorry, I have to bother you again
If I jump to a certain post (ie. with a link like this: http://community.mybb.com/thread-158367-...pid1097536 ), I don't end up at the post but much further down. It seems like it scrolls so far down until the formatting-buttons are visible at the bottom of the screen, regardless of the anchor set in the url. Can you provide a fix to this issue?
Edit: as it turns out, the same issue applies when I do not provide an anchor (so simply something like showthread.php?tid=123).
sorry but this is sceditor bug, and fix of this only in 1.4.6...
unfortunately you need to apply fix manually
https://github.com/samclarke/SCEditor/issues/245
https://github.com/samclarke/SCEditor/co...6ea008981f
Posts: 28
Threads: 2
Joined: Sep 2014
Reputation:
1
(2014-10-01, 12:04 AM)martec Wrote: sorry but this is sceditor bug, and fix of this only in 1.4.6...
unfortunately you need to apply fix manually
https://github.com/samclarke/SCEditor/issues/245
https://github.com/samclarke/SCEditor/co...6ea008981f
Ah, sorry then. Thank you for the quick answer! Got it sorted out now
Posts: 2,530
Threads: 124
Joined: Jul 2011
Reputation:
293
2014-10-05, 10:58 PM
(This post was last modified: 2014-10-05, 11:14 PM by martec.)
New version (v 5.5.1) released.
Now with PM support, and modification in restore message system.
No more automatically restore message, if has some message to restore, will appear some button below, so you need click in restore button to restore message.
To upgrade you need unistall old version, upload new version and install. Need unistall, because has new options in ACP settings (now can set height of editor in ACP).
Posts: 9,905
Threads: 399
Joined: Jan 2010
Reputation:
548
This is why I choose PluginLibrary approach in all of my plugins, you don't need to uninstall to update your templates/settings.
Soporte en Español
Discord at omar.gonzalez ( Omar G.#6117 ); Telegram at @omarugc ;
Posts: 2,530
Threads: 124
Joined: Jul 2011
Reputation:
293
(2014-10-06, 04:22 AM)Omar G. Wrote: This is why I choose PluginLibrary approach in all of my plugins, you don't need to uninstall to update your templates/settings.
for me not make sense need PluginLibrary requirement, if plugin not made any core edit.
Posts: 569
Threads: 117
Joined: Apr 2012
Reputation:
34
2014-10-09, 02:35 PM
(This post was last modified: 2014-10-09, 02:36 PM by niere8.)
Hi, I have installed this plugin and I have a problem with Quote and IE11 (I don't know if the problem depends from plugin).
When I click on Quote, I haven't notice "You have selected one or more posts to quote. Quote these posts now or deselect them.", and it's ok, I would like directly quote text in editor and I can reply just under quote.
But I have a problem with IE11: when I click quote, write in editor under quote text and I click on "Preview", my text reply disappears, there isn't more it.
And always in IE11, when I send a reply, image spinner.gif doens't disappear when reply is posted.
How can I resolve?
Thank you in advance
Posts: 9,905
Threads: 399
Joined: Jan 2010
Reputation:
548
2014-10-09, 06:08 PM
(This post was last modified: 2014-10-11, 01:19 AM by Omar G..)
Source mode seems to be ignored if you open multiple quick edit forms at the same time.
codebutquick template:
\$(\'#message\').height(\'280px\');
codebutquick_pm template:
\$(\'#message\').height({\$mybb->settings[\'quickadveditor_qurp_heigh\']}+\'px\');
Should probably be:
$('#message').height('{$mybb->settings['quickadveditor_qurp_heigh']}px');
$('#message').height('{$mybb->settings['quickadveditor_qued_heigh']}px');
I don't understand what is the reason behind two templates, and probably you should add an js file instead of dropping the JS into a template. No sure.
Soporte en Español
Discord at omar.gonzalez ( Omar G.#6117 ); Telegram at @omarugc ;
Posts: 2,530
Threads: 124
Joined: Jul 2011
Reputation:
293
(2014-10-09, 02:35 PM)niere8 Wrote: Hi, I have installed this plugin and I have a problem with Quote and IE11 (I don't know if the problem depends from plugin).
When I click on Quote, I haven't notice "You have selected one or more posts to quote. Quote these posts now or deselect them.", and it's ok, I would like directly quote text in editor and I can reply just under quote.
But I have a problem with IE11: when I click quote, write in editor under quote text and I click on "Preview", my text reply disappears, there isn't more it.
And always in IE11, when I send a reply, image spinner.gif doens't disappear when reply is posted.
How can I resolve?
Thank you in advance
this isn´t this plugin issue...
this issu is mybb bug https://github.com/mybb/mybb/issues/1391
Posts: 2,530
Threads: 124
Joined: Jul 2011
Reputation:
293
(2014-10-09, 06:08 PM)Omar G. Wrote: Source mode seems to be ignored if you open multiple quick edit forms at the same time.
codebutquick template:
\$(\'#message\').height(\'280px\');
codebutquick template:
\$(\'#message\').height({\$mybb->settings[\'quickadveditor_qurp_heigh\']}+\'px\');
Should probably be:
$('#message').height('{$mybb->settings['quickadveditor_qurp_heigh']}px');
$('#message').height('{$mybb->settings['quickadveditor_qued_heigh']}px');
I don't understand what is the reason behind two templates, and probably you should add an js file instead of dropping the JS into a template. No sure.
?? i beliweve that this isn´t correct thread...
anyway...
what version you using?
in new version i bewlieve all ok
https://github.com/martec/quickadveditor...editor.php
https://github.com/martec/quickadveditor...orplus.php
Posts: 9,905
Threads: 399
Joined: Jan 2010
Reputation:
548
I'm not using the plus version and it doesn't seem fixed in the normal one.
Soporte en Español
Discord at omar.gonzalez ( Omar G.#6117 ); Telegram at @omarugc ;
|