forked from magento/magento2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from magento/2.2-develop
Updating repo
- Loading branch information
Showing
3,948 changed files
with
57,671 additions
and
20,097 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Admin Notification Functional Tests | ||
|
||
The Functional Test Module for **Magento Admin Notification** module. |
20 changes: 20 additions & 0 deletions
20
app/code/Magento/AdminNotification/Test/Mftf/composer.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"name": "magento/functional-test-module-admin-notification", | ||
"description": "N/A", | ||
"config": { | ||
"sort-packages": true | ||
}, | ||
"require": { | ||
"php": "~7.0.13|~7.1.0", | ||
"magento/functional-test-module-store": "100.0.0-dev", | ||
"magento/functional-test-module-backend": "100.0.0-dev", | ||
"magento/functional-test-module-media-storage": "100.0.0-dev", | ||
"magento/magento2-functional-testing-framework": "2.2.0", | ||
"magento/functional-test-module-ui": "100.0.0-dev" | ||
}, | ||
"type": "magento2-test", | ||
"license": [ | ||
"OSL-3.0", | ||
"AFL-3.0" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 8 additions & 6 deletions
14
app/code/Magento/AdminNotification/view/adminhtml/web/js/system/messages/popup.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,26 @@ | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
*/ | ||
|
||
define([ | ||
'jquery', | ||
'Magento_Ui/js/modal/modal' | ||
], function ($) { | ||
], function ($, modal) { | ||
'use strict'; | ||
|
||
return function (data, element) { | ||
if (this.modal) { | ||
this.modal.html($(element).html()); | ||
|
||
if (modal.modal) { | ||
modal.modal.html($(element).html()); | ||
} else { | ||
this.modal = $(element).modal({ | ||
modal.modal = $(element).modal({ | ||
modalClass: data.class, | ||
type: 'popup', | ||
buttons: [] | ||
}); | ||
} | ||
this.modal.modal('openModal'); | ||
|
||
modal.modal.modal('openModal'); | ||
}; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions
3
app/code/Magento/AdvancedPricingImportExport/Test/Mftf/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Advanced Pricing Import Export Functional Tests | ||
|
||
The Functional Test Module for **Magento Advanced Pricing Import Export** module. |
23 changes: 23 additions & 0 deletions
23
app/code/Magento/AdvancedPricingImportExport/Test/Mftf/composer.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"name": "magento/functional-test-module-advanced-pricing-import-export", | ||
"description": "N/A", | ||
"config": { | ||
"sort-packages": true | ||
}, | ||
"require": { | ||
"php": "~7.0.13|~7.1.0", | ||
"magento/functional-test-module-catalog": "100.0.0-dev", | ||
"magento/functional-test-module-catalog-inventory": "100.0.0-dev", | ||
"magento/functional-test-module-eav": "100.0.0-dev", | ||
"magento/functional-test-module-import-export": "100.0.0-dev", | ||
"magento/functional-test-module-catalog-import-export": "100.0.0-dev", | ||
"magento/functional-test-module-customer": "100.0.0-dev", | ||
"magento/functional-test-module-store": "100.0.0-dev", | ||
"magento/magento2-functional-testing-framework": "2.2.0" | ||
}, | ||
"type": "magento2-test", | ||
"license": [ | ||
"OSL-3.0", | ||
"AFL-3.0" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.