-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ca73f54
commit 5ab8fee
Showing
1 changed file
with
9 additions
and
1 deletion.
There are no files selected for viewing
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,3 +1,11 @@ | ||
// 2017-09-17 | ||
/** 2017-09-06 @uses Class::extend() https://github.com/magento/magento2/blob/2.2.0-rc2.3/app/code/Magento/Ui/view/base/web/js/lib/core/class.js#L106-L140 */ | ||
define(['Df_Payment/withOptions'], function(parent) {'use strict'; return parent.extend();}); | ||
define(['Df_Payment/withOptions'], function(parent) {'use strict'; return parent.extend({ | ||
/** | ||
* 2017-09-17 | ||
* The `true` value means that the payment options need to be shown on the Magento side. | ||
* The `false` value means that the payment options need to be shown on the Yandex.Kassa side. | ||
* @returns {Boolean} | ||
*/ | ||
needShowOptions: function() {return this.config('needShowOptions');}, | ||
});}); |