16 lines
385 B
JavaScript
16 lines
385 B
JavaScript
/**
|
|
* For the full copyright and license information, please view the
|
|
* docs/licenses/LICENSE.txt file that was distributed with this source code.
|
|
*/
|
|
|
|
/**
|
|
* /!\ This file is deprecated, it will be deleted in next major release /!\
|
|
*/
|
|
'use strict';
|
|
|
|
var attachments = {
|
|
confirmProductAttached: function(product_list) {
|
|
return confirm(confirm_text + '\n\n' + product_list);
|
|
}
|
|
}
|