I have a .js file. It begins with the following code:

// --------------------------------------- // Добавочная функция JQuery для изменения value, которая вызывает событие change // --------------------------------------- $.fn.changeVal = function (v) { return $(this).val(v).trigger("change"); } 

When I open it, PhpStorm hides a comment. It turns out that: enter image description here

How do I cancel this? Make it so that he does not hide the comments?

  • 3
    File> Settings> Editor> General> Code Folding. - user207618
  • and there is a file header. Thank. - user153742
  • There you can disable different types. You are welcome. - user207618

0