Skip to content

Commit

Permalink
fix eslint error
Browse files Browse the repository at this point in the history
  • Loading branch information
fsbraun committed May 2, 2024
1 parent 73b1e88 commit 1c535b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cms/static/cms/js/modules/cms.modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ class Modal {
var height = this.ui.modal.height();
var modalLeft = this.ui.modal.position().left;
var modalTop = this.ui.modal.position().top;
var resizeDir = this.ui.resize.css("direction") === "rtl" ? -1 : +1;
var resizeDir = this.ui.resize.css('direction') === 'rtl' ? -1 : +1;

// create event for stopping
this.ui.body.on(this.pointerUp, function(e) {
Expand Down

0 comments on commit 1c535b4

Please sign in to comment.