Skip to content

Commit

Permalink
Fix eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
chrfritsch committed Jul 3, 2017
1 parent b9471b9 commit 9a580f3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/dcx_collections/js/dcx-collections.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
wrapper: wrapper,
success: function (data) {
this.wrapper.html($('<div>')
.attr('draggable', 'true')
.attr('class', 'img')
.attr('style', "background-image:url('" + data.url + "');"));
.attr('draggable', 'true')
.attr('class', 'img')
.attr('style', "background-image:url('" + data.url + "');"));
this.wrapper.on('dragstart', function (ev) {
ev.originalEvent.dataTransfer.setData('text/plain', data.id);
});
Expand Down

0 comments on commit 9a580f3

Please sign in to comment.