Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
M
mangala-pardusacikhack
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Tuğba Fıçıcı
mangala-pardusacikhack
Commits
d917a403
Kaydet (Commit)
d917a403
authored
May 07, 2021
tarafından
Tuğba Fıçıcı
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Ayarlar güncellendi.
üst
eb025a93
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
44 additions
and
2 deletions
+44
-2
data.json
data.json
+2
-0
settings.html
pages/settings.html
+35
-2
settings.js
pages/settings.js
+7
-0
No files found.
data.json
Dosyayı görüntüle @
d917a403
{
"user_name"
:
"Haydut"
,
"score_list"
:[],
"zorluk_setting"
:
"Orta"
}
\ No newline at end of file
pages/settings.html
Dosyayı görüntüle @
d917a403
...
...
@@ -141,6 +141,7 @@
class=
"form-control"
type=
"text"
placeholder=
"Kullanıcı Adı"
id=
"kullaniciadi"
/>
</div>
</div>
...
...
@@ -156,6 +157,7 @@
id=
"customRadioInline1"
name=
"customRadioInline1"
class=
"custom-control-input"
value=
"Kolay"
checked
/>
<label
...
...
@@ -171,6 +173,7 @@
id=
"customRadioInline2"
name=
"customRadioInline1"
class=
"custom-control-input"
value=
"Orta"
/>
<label
class=
"custom-control-label yellow"
...
...
@@ -185,6 +188,7 @@
id=
"customRadioInline3"
name=
"customRadioInline1"
class=
"custom-control-input"
value=
"Zor"
/>
<label
class=
"custom-control-label yellow"
...
...
@@ -192,6 +196,21 @@
>
Zor
</label
>
</div>
<br
/>
<div
class=
"custom-control custom-radio custom-control-inline"
>
<input
type=
"radio"
id=
"customRadioInline4"
name=
"customRadioInline1"
class=
"custom-control-input"
value=
"Cengaver"
/>
<label
class=
"custom-control-label yellow"
for=
"customRadioInline4"
>
Cengaver
</label
>
</div>
</div>
</div>
<div
class=
"row"
style=
"margin-top: 10px"
>
...
...
@@ -204,12 +223,26 @@
</div>
</div>
</body>
<script
src=
"settings.js"
></script>
<script>
const
remote
=
require
(
"electron"
).
remote
;
var
atananisim
=
getUsername
();
document
.
getElementById
(
"kullaniciadi"
).
value
=
atananisim
;
document
.
getElementById
(
"save"
).
addEventListener
(
"click"
,
function
(
e
)
{
var
window
=
remote
.
getCurrentWindow
();
window
.
close
();
var
name
=
document
.
getElementById
(
"kullaniciadi"
).
value
;
var
radios
=
document
.
getElementsByName
(
'customRadioInline1'
);
var
secilen
;
for
(
var
i
=
0
,
length
=
radios
.
length
;
i
<
length
;
i
++
)
{
if
(
radios
[
i
].
checked
)
{
secilen
=
radios
[
i
].
value
;
break
;
}
}
console
.
log
(
secilen
)
updateSetting
(
name
,
secilen
);
//var window = remote.getCurrentWindow();
//window.close();
});
</script>
</html>
pages/settings.js
Dosyayı görüntüle @
d917a403
...
...
@@ -127,3 +127,9 @@ function getSortScoreList(){
}
function
updateSetting
(
isim
,
zorluk
){
var
data
=
readData
();
data
.
user_name
=
isim
;
data
.
zorluk_setting
=
zorluk
;
writeData
(
data
);
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
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 comment