📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
blogscripti.demodesign.com.tr
/
admin
/
assets
/
js
📝
pages-pricing.js
← Geri Dön
/** * Pricing */ 'use strict'; document.addEventListener('DOMContentLoaded', function (event) { (function () { const priceDurationToggler = document.querySelector('.price-duration-toggler'), priceMonthlyList = [].slice.call(document.querySelectorAll('.price-monthly')), priceYearlyList = [].slice.call(document.querySelectorAll('.price-yearly')); function togglePrice() { if (priceDurationToggler.checked) { // If checked priceYearlyList.map(function (yearEl) { yearEl.classList.remove('d-none'); }); priceMonthlyList.map(function (monthEl) { monthEl.classList.add('d-none'); }); } else { // If not checked priceYearlyList.map(function (yearEl) { yearEl.classList.add('d-none'); }); priceMonthlyList.map(function (monthEl) { monthEl.classList.remove('d-none'); }); } } // togglePrice Event Listener togglePrice(); priceDurationToggler.onchange = function () { togglePrice(); }; })(); });
💾 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