📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
takiaksesuar.demodesign.com.tr
/
admin
/
assets
/
js
📝
check-all-mail.js
← Geri Dön
$(function() { 'use strict' $('#checkAll').on('click', function() { if ($(this).is(':checked')) { $('.main-mail-list .ckbox input').each(function() { $(this).closest('.main-mail-item').addClass('selected'); $(this).attr('checked', true); }); $('.main-mail-options .btn:not(:first-child)').removeClass('disabled'); } else { $('.main-mail-list .ckbox input').each(function() { $(this).closest('.main-mail-item').removeClass('selected'); $(this).attr('checked', false); }); $('.main-mail-options .btn:not(:first-child)').addClass('disabled'); } }); $('.main-mail-item .main-mail-checkbox input').on('click', function() { if ($(this).is(':checked')) { $(this).attr('checked', false); $(this).closest('.main-mail-item').addClass('selected'); $('.main-mail-options .btn:not(:first-child)').removeClass('disabled'); } else { $(this).attr('checked', true); $(this).closest('.main-mail-item').removeClass('selected'); if (!$('.main-mail-list .selected').length) { $('.main-mail-options .btn:not(:first-child)').addClass('disabled'); } } }); $('.main-mail-star').on('click', function(e) { $(this).toggleClass('active'); }); $('#btnCompose').on('click', function(e) { e.preventDefault(); $('.main-mail-compose').show(); }); $('.main-mail-compose-header a:first-child').on('click', function(e) { e.preventDefault(); $('.main-mail-compose').toggleClass('main-mail-compose-minimize'); }) $('.main-mail-compose-header a:nth-child(2)').on('click', function(e) { e.preventDefault(); $(this).find('.fas').toggleClass('fa-compress'); $(this).find('.fas').toggleClass('fa-expand'); $('.main-mail-compose').toggleClass('main-mail-compose-compress'); $('.main-mail-compose').removeClass('main-mail-compose-minimize'); }); $('.main-mail-compose-header a:last-child').on('click', function(e) { e.preventDefault(); $('.main-mail-compose').hide(100); $('.main-mail-compose').removeClass('main-mail-compose-minimize'); }); });
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula