Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
L
Liman MYS - Çekirdek
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ç
liman
Liman MYS - Çekirdek
Commits
335919e4
Kaydet (Commit)
335919e4
authored
Ara 18, 2018
tarafından
mertcelen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Daily update
üst
e03eb38b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
1 deletion
+35
-1
loading.blade.php
resources/views/__system__/loading.blade.php
+24
-0
app.blade.php
resources/views/layouts/app.blade.php
+0
-0
index.blade.php
resources/views/server/index.blade.php
+11
-1
No files found.
resources/views/__system__/loading.blade.php
0 → 100644
Dosyayı görüntüle @
335919e4
<div
class=
"loading"
hidden
>
<div
class=
"loader"
></div><br>
<span
class=
"loading_message"
></span>
<style>
.loader
{
border
:
16px
solid
#f3f3f3
;
/* Light grey */
border-top
:
16px
solid
#3498db
;
/* Blue */
border-radius
:
50%
;
width
:
120px
;
height
:
120px
;
animation
:
spin
2s
linear
infinite
;
}
.loading_message
{
margin-left
:
auto
;
}
@keyframes
spin
{
0
%
{
transform
:
rotate
(
0deg
);
}
100
%
{
transform
:
rotate
(
360deg
);
}
}
</style>
</div>
\ No newline at end of file
resources/views/layouts/app.blade.php
Dosyayı görüntüle @
335919e4
This diff is collapsed.
Click to expand it.
resources/views/server/index.blade.php
Dosyayı görüntüle @
335919e4
...
...
@@ -20,7 +20,7 @@
</thead>
<tbody>
@foreach (
$servers
as
$server
)
<tr onclick="
location
.
href
=
'/sunucular/{{$server->_id}}'
;
" class="
highlight
">
<tr onclick="
dummy
(
'{{$server->_id}}'
)
" class="
highlight
">
<td>
{
{$server->name}
}
</td>
<td>
{
{$server->ip_address}
}
</td>
<td>
{
{$server->port}
}
</td>
...
...
@@ -45,4 +45,13 @@
],
"
submit_text
" => "
Ekle
"
])
<script>
function dummy(id){
let main = document.getElementsByTagName('main')[0];
main.innerHTML = document.getElementsByClassName('loading')[0].innerHTML;
document.getElementsByClassName('loading_message')[0].innerHTML = "
Sunucuyla
bağlantı
kuruluyor
";
location.href = '/sunucular/' + id ;
}
</script>
@endsection
\ 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