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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2018-05-03 19:59:03 +0300
committerMike Greiling <mike@pixelcog.com>2018-05-03 19:59:03 +0300
commit9328c75e1a8a9ea8c08bd33ac875ac2ce46cbbad (patch)
tree90bbc82076c43a5f9a66a09fb1db4a7e31454ecc /app/helpers
parent4bdfcc580d005c1f3c3afbf9015134000f95d05b (diff)
remove force_same_domain option from webpack helpers
Diffstat (limited to 'app/helpers')
-rw-r--r--app/helpers/webpack_helper.rb14
1 files changed, 6 insertions, 8 deletions
diff --git a/app/helpers/webpack_helper.rb b/app/helpers/webpack_helper.rb
index 30cd8c90008..dfdbc0f8a77 100644
--- a/app/helpers/webpack_helper.rb
+++ b/app/helpers/webpack_helper.rb
@@ -1,8 +1,8 @@
require 'gitlab/webpack/manifest'
module WebpackHelper
- def webpack_bundle_tag(bundle, force_same_domain: false)
- javascript_include_tag(*entrypoint_paths(bundle, force_same_domain: force_same_domain))
+ def webpack_bundle_tag(bundle)
+ javascript_include_tag(*entrypoint_paths(bundle))
end
def webpack_controller_bundle_tags
@@ -33,7 +33,7 @@ module WebpackHelper
javascript_include_tag(*chunks)
end
- def entrypoint_paths(source, extension: nil, force_same_domain: false)
+ def entrypoint_paths(source, extension: nil)
return "" unless source.present?
paths = Gitlab::Webpack::Manifest.entrypoint_paths(source)
@@ -41,11 +41,9 @@ module WebpackHelper
paths.select! { |p| p.ends_with? ".#{extension}" }
end
- unless force_same_domain
- force_host = webpack_public_host
- if force_host
- paths.map! { |p| "#{force_host}#{p}" }
- end
+ force_host = webpack_public_host
+ if force_host
+ paths.map! { |p| "#{force_host}#{p}" }
end
paths