Bagaimana Cara Menyembunyikan Skrip yang Berasal dari Ekstensi? #185
Answered
by
taufik-nurrohman
yuliakbard
asked this question in
Q&A
-
Kang, bagaimana cara menyembunyikan script yang berasal dari extension. misalnya script dari extension view dan comment. saya sudah coba kondisionalkan dibagian extensionnya. contoh: <?php namespace x\view\live;
if(!$site->is('mobile')){
$z=\defined("\\DEBUG")&&\DEBUG?'.':'.min.';\Asset::set(__DIR__.\DS.'..'.\DS.'..'.\DS.'lot'.\DS.'asset'.\DS.'js'.\DS.'index'.$z.'js');
}
... saya mencoba mengkondisional bagian ini, tapi scriptnya tetap muncul. |
Beta Was this translation helpful? Give feedback.
Answered by
taufik-nurrohman
Jan 31, 2022
Replies: 1 comment
-
Bisa menambahkan perintah seperti ini di berkas $z = defined('DEBUG') && DEBUG ? '.' : '.min.';
if ($site->is('mobile')) {
Asset::let(LOT . DS . 'x' . DS . 'view' . DS . 'lot' . DS . 'asset' . DS . 'js' . DS . 'index' . $z . 'js');
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
yuliakbard
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Bisa menambahkan perintah seperti ini di berkas
.\lot\layout\index.php
mas, nggak perlu edit berkas ekstensi secara langsung: