The position of cross used to close the modal is down its natural position (floating elements need to be positioned before contents).
@@ -404,7 +404,7 @@
$container.append(this.createTitleContent());
// Close button
- $container.append(this.createCloseButton());
+ $container.prepend(this.createCloseButton());
return $container;
},