forked from pimcore/customer-data-framework
-
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.
Fix issue with merge button in customer duplicates (pimcore#510)
* Fix issue with merge button in customer duplicates * Update src/Resources/public/js/CustomerDuplicates/frontend.js * Removed unintended code
- Loading branch information
1 parent
bd4c2bd
commit 60c5c68
Showing
3 changed files
with
27 additions
and
8 deletions.
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
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,26 @@ | ||
/** | ||
* Pimcore | ||
* | ||
* This source file is available under two different licenses: | ||
* - GNU General Public License version 3 (GPLv3) | ||
* - Pimcore Commercial License (PCL) | ||
* Full copyright and license information is available in | ||
* LICENSE.md which is distributed with this source code. | ||
* | ||
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org) | ||
* @license http://www.pimcore.org/license GPLv3 and PCL | ||
*/ | ||
|
||
|
||
$(function() { | ||
|
||
// Merge button in customer duplicates view | ||
const duplicates = document.getElementsByClassName('customer-duplicates-merge'); | ||
for(let duplicate of duplicates){ | ||
duplicate.addEventListener('click', (event) => { | ||
const duplicateIds = JSON.parse(duplicate.dataset.duplicateIds); | ||
new window.top.pimcore.plugin.objectmerger.panel(duplicateIds[0], duplicateIds[1]); | ||
}); | ||
} | ||
|
||
}()); |
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