Welcome to mirror list, hosted at ThFree Co, Russian Federation.

javascript_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 68c09c922a67533eb826777cc85decdacfce2b7a (plain)
1
2
3
4
5
6
7
8
9
module JavascriptHelper
  def page_specific_javascript_tag(js)
    javascript_include_tag asset_path(js)
  end

  def page_specific_javascript_bundle_tag(js)
    javascript_include_tag(*webpack_asset_paths(js))
  end
end