FM Design
Would you like to react to this message? Create an account in a few clicks or log in to continue.

IMPORTANT

FM Design is in read-only mode, please click here for more information.

Latest topics
» Forumactif Edge - Releases
by Ange Tuteur Tue 03 Sep 2019, 11:49

» GIFActif - Giphy Button for the Editor
by Ange Tuteur Wed 08 May 2019, 17:21

» Forum Closure
by Ange Tuteur Mon 01 Jan 2018, 01:28

» Chit Chat Thread
by Valoish Sun 31 Dec 2017, 19:15

» Font/Text background color.
by Valoish Sun 31 Dec 2017, 19:11

» Forumactif Messenger - Instant Message Application for Forumotion
by Wolfuryo Sun 31 Dec 2017, 18:24

» [GAME] Count to One Million!
by brandon_g Fri 29 Dec 2017, 18:58

» Post Cards
by manikbiradar Wed 20 Dec 2017, 07:50

» [GAME] Countdown from 200,000
by Valoish Wed 13 Dec 2017, 23:22

» GeekPolice Tech Support Forums - GeekPolice.net
by Dr Jay Mon 11 Dec 2017, 19:12

» Asking about some plugin for Forumotion
by Dr Jay Mon 11 Dec 2017, 19:10

» [GAME] What are you thinking right now?
by Van-Helsing Sat 09 Dec 2017, 14:51

» Widget : Similar topics
by ranbac Wed 06 Dec 2017, 18:11

» Change the Background of the Forum and put an image and how to make prefixs?
by Clement Wed 06 Dec 2017, 15:19

» Hello from Western Australia
by SarkZKalie Wed 06 Dec 2017, 05:34

Recent Tutorials
Top posting users this month

Who is online?
In total there are 28 users online :: 0 Registered, 0 Hidden and 28 Guests :: 1 Bot

None

[ View the whole list ]


Most users ever online was 515 on Tue 14 Sep 2021, 15:24

Add maximize to the editor

View previous topic View next topic Go down

Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12042
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Tue 10 Mar 2015, 16:33

This simple trick will allow you to add an existing button to the editor; a button to maximize the editor so it takes up the whole screen.

Add maximize to the editor Screen26


Installation

Go to Administration panel > Modules > JavaScript codes management and create a new script

Title : SCE Maximize
Placement : In all the pages
Code:
$(function(){
  if (!$.sceditor || !toolbar) return;
  toolbar = toolbar.replace(/source/,'maximize,source');
 
  $(function() {
    var sce = $('#text_editor_textarea').sceditor('instance'), fa = document.getElementById('fa_toolbar');
    $('.sceditor-button-maximize')[0].onclick = function() {
      if (!fa) return;
      sce.maximize() && (fa.style.display = 'none');
      !sce.maximize() && (fa.style.display = '');
    };
  });
});

Save the script and you should now have the maximize button to the left of source mode !


Information

The maximize button already exists in the editor code, but was filtered out by Forumotion. Adding it back in is simple. Once the document is ready a global called toolbar is declared which contains all the toolbar options. We then replace source by maximize,source, splicing in the maximize button. The other code included in the script is to hide the forumotion toolbar during maximization.

You can also redeclare the entire toolbar yourself. For example instead of :
Code:
toolbar = toolbar.replace(/source/,'maximize,source');

We can write :
Code:
toolbar = 'bold,italic|color,font';

Which only gives us the bold, italic, color, and font buttons.
Add maximize to the editor Captu120

Other default options can also be added in. For a full list I recommend checking out the SCEditor documentation.
http://www.sceditor.com/documentation/options/


Notice
Tutorial written by Ange Tuteur.
Reproduction not permitted without consent from the author.


Last edited by Ange Tuteur on Mon 20 Jun 2016, 09:36; edited 2 times in total
Juny Thoang
Juny Thoang
New Member
Gender : Male
Age : 28
Posts : 1
Points : 3407
Reputation : 0
Location : HaNoi, Vietnam
Language : Vietnamese
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : Other
http://www.teenvi.com/ https://www.facebook.com/thoang.idol

PostJuny Thoang Thu 19 Mar 2015, 07:11

Code:
bold,italic,underline,strike|left,center,right,justify|bulletlist,orderedlist,horizontalrule|quote,code,faspoiler,fahide,table|servimg,image,email,link,unlink|youtube,dailymotion,flash|size,color,font,removeformat|date,time,pastetext,cut,copy,paste|more|subscript,superscript,fascroll,faupdown,fawow,farand|print,maximize,source
Michael_vx
Michael_vx

Gender : Male
Age : 32
Posts : 302
Points : 4095
Reputation : 76
Language : Arabic
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : Other
http://miccsoft.net https://www.facebook.com/Michaelvx2008

PostMichael_vx Thu 19 Mar 2015, 14:50

nice trick
this code is good
thanks My Master Ange
Ch@lo Valdez
Ch@lo Valdez

Gender : Male
Age : 48
Posts : 65
Points : 3687
Reputation : 5
Location : Mexico
Language : eng spa
Browser : Browser : Google Chrome Forum Version : Forum Version : phpBB3

PostCh@lo Valdez Tue 28 Apr 2015, 19:16

SLGray
SLGray
Valued Member
Gender : Male
Age : 51
Posts : 2465
Points : 7135
Reputation : 290
Location : United States
Language : English
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : ModernBB
http://www.fmthemes.forumotion.com https://www.facebook.com/FM-Themes-655055824604957 https://twitter.com/FMThemes https://pinterest.com/FMThemes

PostSLGray Sat 05 Dec 2015, 23:49

I love this tutorial.
Anonymous
Gast
Guest

PostGast Wed 30 Nov 2016, 13:55

Hello. I'm interested. This is for your edge too? I want to have 100% editor and few buttons. Is it possible? And everything in the buttons say English. Why? When Samantha installed your edge her choice was Dutch. I am surprised.
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12042
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Wed 30 Nov 2016, 14:00

@Prometheus yes, this plugin should work regardless of forum version. The language of the buttons is based on the language chosen in your forum profile settings ; Profile > Preferences > Board Language. If the tooltips are still in English, then the problem comes from Forumotion not providing a full translation.
Anonymous
Guest
Guest

PostGuest Wed 07 Dec 2016, 12:57

Ange Tuteur wrote:@Prometheus yes, this plugin should work regardless of forum version. The language of the buttons is based on the language chosen in your forum profile settings ; Profile > Preferences > Board Language. If the tooltips are still in English, then the problem comes from Forumotion not providing a full translation.

I just had a quick look at the Quick Reply box, but it doesn't resize to 100% on Edge ...
Anonymous
Guest
Guest

PostGuest Wed 21 Dec 2016, 10:47

Sorry, but there are no JS errors. I checked yesterday. The Quick reply box just won't resize to 100% ...
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12042
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Wed 21 Dec 2016, 11:39

It appears to take up the whole screen on my end ?
Add maximize to the editor Captur26

You're referring to the maximize button, yes ?
Anonymous
Guest
Guest

PostGuest Wed 21 Dec 2016, 11:59

No, I mean... look at the QR (Quick Reply):

Add maximize to the editor 20f4b8f73db542e5872902e04e46db5f

and the normal reply:

Add maximize to the editor D2edf3bda08446439f2cc329a88b4986


See the difference? We'd like the QR to have max width, spread all to the right. scratch I had something for that on my friendcodes.nl before. Guess this topic just don't apply to the QR...
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12042
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Wed 21 Dec 2016, 13:50

Oh, this rule should allow you to adjust the quick reply width :
Code:
#quick_reply #textarea_content {
  width:100% !important;
}
Anonymous
Guest
Guest

PostGuest Wed 21 Dec 2016, 14:04

Thanks, @Ange Tuteur. That worked perfectly Smile Good
Sponsored content

PostSponsored content

View previous topic View next topic Back to top

Create an account or log in to leave a reply

You need to be a member in order to leave a reply.

Create an account

Join our community by creating a new account. It's easy!


Create a new account

Log in

Already have an account? No problem, log in here.


Log in

 
Permissions in this forum:
You cannot reply to topics in this forum