1
1
//Update the text in the output textArea
2
- function updateText ( ) {
2
+ updateText = ( ) => {
3
3
let input = document . getElementById ( "text-input" ) . value ;
4
4
document . getElementById ( "text-output" ) . innerText = input ;
5
5
}
6
6
7
- function makeBold ( elem ) {
7
+ makeBold = ( elem ) => {
8
8
//elem is the Bold button element
9
9
//Toggle the .active class (Bootstrap class)
10
10
elem . classList . toggle ( "active" ) ;
@@ -13,12 +13,12 @@ function makeBold(elem) {
13
13
document . getElementById ( "text-output" ) . classList . toggle ( "bold" ) ;
14
14
}
15
15
16
- function makeItalic ( elem ) {
16
+ makeItalic = ( elem ) => {
17
17
elem . classList . toggle ( "active" ) ;
18
18
document . getElementById ( "text-output" ) . classList . toggle ( "italic" ) ;
19
19
}
20
20
21
- function makeUnderline ( elem ) {
21
+ makeUnderline = ( elem ) => {
22
22
elem . classList . toggle ( "active" ) ;
23
23
let output = document . getElementById ( "text-output" ) ;
24
24
if ( output . classList . contains ( "underline" ) ) {
@@ -28,16 +28,16 @@ function makeUnderline(elem) {
28
28
}
29
29
}
30
30
31
- function alignText ( elem , alignType ) {
31
+ alignText = ( elem , alignType ) => {
32
32
let output = document . getElementById ( "text-output" ) ;
33
33
output . style . textAlign = alignType ;
34
34
35
35
/* If one align button is active, make other align buttons inactive */
36
36
//All the align buttons have class name as ALIGN
37
37
let buttonList = document . getElementsByClassName ( "align" ) ;
38
- for ( let i = 0 ; i < buttonList . length ; i ++ ) {
38
+ for ( let button of buttonList ) {
39
39
//Remove .active class from all align buttons
40
- buttonList [ i ] . classList . remove ( "active" ) ;
40
+ button . classList . remove ( "active" ) ;
41
41
}
42
42
43
43
//Make the seleceted align button active
0 commit comments