Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Luciano Barletta
/
mini-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit 2d8aa368
authored
2019-11-22 11:49:59 -0300
by
Georgina Mondino
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Boton de Borrar Tab
1 parent
2f588b4f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
4 deletions
Scripts/construct.js
Style/Templates.css
generate.html
Scripts/construct.js
View file @
2d8aa36
...
...
@@ -2,7 +2,7 @@
* Armado de formulario
*/
function
removeField
(
b
){
while
(
b
.
getAttribute
(
"name"
)
=
=
"Field"
)
b
=
b
.
parentElement
;
while
(
b
.
getAttribute
(
"name"
)
!
=
"Field"
)
b
=
b
.
parentElement
;
if
(
b
.
nodeElement
==
"body"
)
return
;
b
.
parentElement
.
removeChild
(
b
);
}
...
...
@@ -19,7 +19,7 @@ function addField(b){
}
function
removeTab
(
b
){
while
(
b
.
getAttribute
(
"name"
)
=
=
"Tab"
)
b
=
b
.
parentElement
;
while
(
b
.
getAttribute
(
"name"
)
!
=
"Tab"
)
b
=
b
.
parentElement
;
if
(
b
.
nodeElement
==
"body"
)
return
;
b
.
parentElement
.
removeChild
(
b
);
}
...
...
Style/Templates.css
View file @
2d8aa36
...
...
@@ -20,8 +20,8 @@ body{
}
.TabTitle
{
font-size
:
30px
;
width
:
100
%
;
text-align
:
center
;
width
:
94
%
;
text-align
:
left
;
border
:
none
;
border-bottom
:
1px
solid
grey
;
}
...
...
generate.html
View file @
2d8aa36
...
...
@@ -28,6 +28,9 @@
<template
id=
"tabTemplate"
>
<div
class=
"TabCards"
>
<input
class=
"TabTitle"
placeholder=
"Titulo del Tab"
type=
"text"
>
<button
class=
"RemoveInputButton"
onclick=
"removeTab(this)"
>
X
</button>
<br>
<div
style=
"text-align: center;"
>
<button
class=
"NewInputButton"
onclick=
"addField(this)"
>
...
...
@@ -40,6 +43,7 @@
<template
id=
"fieldTemplate"
>
<div
class=
"InputContainer"
>
<input
type=
"text"
id=
"Titulo"
class=
"Input"
placeholder=
"Título"
>
<select
name=
"input"
class=
"Input"
>
<option
disabled
selected
value=
""
>
Input
</option>
<option
id=
"text"
value=
"text"
>
Texto
</option>
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment