Skip to content

Commit

Permalink
Update widget name in print.js
Browse files Browse the repository at this point in the history
  • Loading branch information
nickolasburr committed Nov 5, 2019
1 parent b05d148 commit 98e3041
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions view/base/web/js/print.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ define([
], function ($) {
'use strict';

$.widget('mage.labelPrint', {
$.widget('mage.simpleReturnsLabelPrint', {
options: {
container: ".thumbnail"
container: '.thumbnail'
},
_create: function () {
this.element.on('click', $.proxy(this._print, this));
Expand All @@ -32,5 +32,5 @@ define([
}
});

return $.mage.labelPrint;
return $.mage.simpleReturnsLabelPrint;
});

0 comments on commit 98e3041

Please sign in to comment.