Skip to content

Commit 2d45730

Browse files
committed
MAGETWO-72283: Merge branch 'develop' of github.com:magento/magento2ce into MAGETWO-72283-PR-10771
2 parents 38cf564 + 5973d67 commit 2d45730

File tree

20 files changed

+18
-15
lines changed

20 files changed

+18
-15
lines changed

.github/.htaccess

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Order deny,allow
2+
Deny from all
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

.htaccess

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -234,10 +234,6 @@
234234
order allow,deny
235235
deny from all
236236
</Files>
237-
<Files CONTRIBUTING.md>
238-
order allow,deny
239-
deny from all
240-
</Files>
241237
<Files COPYING.txt>
242238
order allow,deny
243239
deny from all

.htaccess.sample

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -210,10 +210,6 @@
210210
order allow,deny
211211
deny from all
212212
</Files>
213-
<Files CONTRIBUTING.md>
214-
order allow,deny
215-
deny from all
216-
</Files>
217213
<Files COPYING.txt>
218214
order allow,deny
219215
deny from all

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ cache:
4848
- $HOME/node_modules
4949
- $HOME/yarn.lock
5050
before_install: ./dev/travis/before_install.sh
51-
install: composer install --no-interaction --prefer-dist
51+
install: composer install --no-interaction
5252
before_script: ./dev/travis/before_script.sh
5353
script:
5454
# Set arguments for variants of phpunit based tests; '|| true' prevents failing script when leading test fails

app/code/Magento/ProductVideo/view/adminhtml/web/js/get-video-information.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ define([
302302
additionalParams += '&autoplay=1';
303303
}
304304

305-
src = window.location.protocol + '//player.vimeo.com/video/' +
305+
src = 'https://player.vimeo.com/video/' +
306306
this._code + '?api=1&player_id=vimeo' +
307307
this._code +
308308
timestamp +
@@ -525,7 +525,7 @@ define([
525525
);
526526
} else if (type === 'vimeo') {
527527
$.ajax({
528-
url: window.location.protocol + '//www.vimeo.com/api/v2/video/' + id + '.json',
528+
url: 'https://www.vimeo.com/api/v2/video/' + id + '.json',
529529
dataType: 'jsonp',
530530
data: {
531531
format: 'json'

app/code/Magento/ProductVideo/view/frontend/web/js/load-player.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ define(['jquery', 'jquery/ui'], function ($) {
317317
if (this._loop) {
318318
additionalParams += '&loop=1';
319319
}
320-
src = window.location.protocol + '//player.vimeo.com/video/' +
320+
src = 'https://player.vimeo.com/video/' +
321321
this._code + '?api=1&player_id=vimeo' +
322322
this._code +
323323
timestamp +

0 commit comments

Comments
 (0)