Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -185,15 +185,15 @@ if (annyang) {
|
|
185 |
document.getElementById('speechStatus').innerText = 'Alamat prospek diisi: ' + value;
|
186 |
},
|
187 |
'jenis individu': function() {
|
188 |
-
document.getElementById('jenis_prospek').value = 'Individu';
|
189 |
document.getElementById('speechStatus').innerText = 'Jenis prospek: Individu';
|
190 |
},
|
191 |
'jenis perusahaan': function() {
|
192 |
-
document.getElementById('jenis_prospek').value = 'Perusahaan';
|
193 |
document.getElementById('speechStatus').innerText = 'Jenis prospek: Perusahaan';
|
194 |
},
|
195 |
'jenis kafe': function() {
|
196 |
-
document.getElementById('jenis_prospek').value = 'Kafe';
|
197 |
document.getElementById('speechStatus').innerText = 'Jenis prospek: Kafe';
|
198 |
},
|
199 |
'tanggal *value': function(value) {
|
|
|
185 |
document.getElementById('speechStatus').innerText = 'Alamat prospek diisi: ' + value;
|
186 |
},
|
187 |
'jenis individu': function() {
|
188 |
+
document.getElementById('jenis_prospek').querySelector('input').value = 'Individu';
|
189 |
document.getElementById('speechStatus').innerText = 'Jenis prospek: Individu';
|
190 |
},
|
191 |
'jenis perusahaan': function() {
|
192 |
+
document.getElementById('jenis_prospek').querySelector('input').value = 'Perusahaan';
|
193 |
document.getElementById('speechStatus').innerText = 'Jenis prospek: Perusahaan';
|
194 |
},
|
195 |
'jenis kafe': function() {
|
196 |
+
document.getElementById('jenis_prospek').querySelector('input').value = 'Kafe';
|
197 |
document.getElementById('speechStatus').innerText = 'Jenis prospek: Kafe';
|
198 |
},
|
199 |
'tanggal *value': function(value) {
|