File tree Expand file tree Collapse file tree 1 file changed +0
-48
lines changed Expand file tree Collapse file tree 1 file changed +0
-48
lines changed Original file line number Diff line number Diff line change 108
108
box-shadow : 0 0 0 3px rgba (37 , 99 , 235 , 0.3 );
109
109
}
110
110
111
- # debug {
112
- margin-top : 2.5rem ;
113
- padding : 1.25rem ;
114
- background-color : var (--light-gray );
115
- border-radius : 0.5rem ;
116
- border : 1px solid var (--border );
117
- display : none;
118
- }
119
-
120
- # debug h3 {
121
- margin-bottom : 0.75rem ;
122
- font-size : 1.125rem ;
123
- color : var (--dark );
124
- }
125
-
126
- # debug p {
127
- margin-bottom : 0.5rem ;
128
- font-size : 0.875rem ;
129
- color : var (--gray );
130
- }
131
-
132
- # debug span {
133
- word-break : break-all;
134
- color : var (--dark );
135
- font-family : monospace;
136
- }
137
-
138
111
@media (max-width : 768px ) {
139
112
.container {
140
113
padding : 1.5rem ;
@@ -169,32 +142,11 @@ <h1>Create GitHub App from Manifest</h1>
169
142
170
143
< button type ="submit " class ="button "> Create GitHub App</ button >
171
144
</ form >
172
-
173
- < div id ="debug ">
174
- < h3 > Debug Info:</ h3 >
175
- < p > Form action: < span id ="currentAction "> </ span > </ p >
176
- < p > Selected environment: < span id ="selectedEnv "> </ span > </ p >
177
- </ div >
178
145
</ div >
179
146
180
147
< script type ="text/javascript " src ="script.js "> </ script >
181
148
< script type ="text/javascript ">
182
149
initPage ( ) ;
183
-
184
- // Show debug info
185
- document . getElementById ( 'debug' ) . style . display = 'block' ;
186
-
187
- // Update debug info
188
- function updateDebugInfo ( ) {
189
- document . getElementById ( 'currentAction' ) . innerText = document . getElementById ( 'form' ) . action ;
190
- document . getElementById ( 'selectedEnv' ) . innerText = document . getElementById ( 'environment' ) . value ;
191
- }
192
-
193
- // Call it once initially
194
- setTimeout ( updateDebugInfo , 1000 ) ;
195
-
196
- // And whenever the environment changes
197
- document . getElementById ( 'environment' ) . addEventListener ( 'change' , updateDebugInfo ) ;
198
150
</ script >
199
151
</ body >
200
152
</ html >
You can’t perform that action at this time.
0 commit comments