📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
esnafbul.demodesign.com.tr
/
panel
/
src
/
js
📝
side-menu-tooltip.js
← Geri Dön
import tippy, { roundArrow } from "tippy.js"; (function () { "use strict"; // Side menu tooltips let initTooltips = (function tooltips() { $(".side-menu").each(function () { if (this._tippy == undefined) { let content = $(this) .find(".side-menu__title") .html() .replace(/<[^>]*>?/gm, "") .trim(); tippy(this, { content: content, arrow: roundArrow, animation: "shift-away", placement: "right", }); } if ( $(window).width() <= 1260 || $(this).closest(".side-nav").hasClass("side-nav--simple") ) { this._tippy.enable(); } else { this._tippy.disable(); } }); return tooltips; })(); window.addEventListener("resize", () => { initTooltips(); }); })();
💾 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