📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv2.demodesign.com.tr
/
assets
/
js
/
components
📝
hs.focus-state.js
← Geri Dön
/** * Focus state wrapper. * * @author Htmlstream * @version 1.0 * */ ;(function ($) { 'use strict'; $.HSCore.components.HSFocusState = { /** * Focus state. * * @return undefined */ init: function () { var collection = $('.js-focus-state input:not([type="checkbox"], [type="radio"]), .js-focus-state textarea, .js-focus-state select'); if (!collection.length) return; collection.on('focusin', function () { var $this = $(this), $thisParent = $this.closest('.js-focus-state'); $thisParent.addClass('u-focus-state'); }); collection.on('focusout', function () { var $this = $(this), $thisParent = $this.closest('.js-focus-state'); $thisParent.removeClass('u-focus-state'); }); } }; })(jQuery);
💾 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