]> _ Git - fluidbook-toolbox.git/commitdiff
wip #5467 @0.25
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Tue, 11 Oct 2022 10:52:39 +0000 (12:52 +0200)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Tue, 11 Oct 2022 10:52:39 +0000 (12:52 +0200)
resources/linkeditor/js/linkeditor.rulers.js

index b48c4ad4421003c1374fc7947d8a2d9536070b42..e51881da724181557df6f76d66e716ee7da5334b 100644 (file)
@@ -18,14 +18,17 @@ LinkeditorRulers.prototype = {
 
         $("#linkeditor-ruler-x").on('mousedown', function (e) {
             $this.addRuler('y');
+            return false;
         });
 
         $("#linkeditor-ruler-y").on('mousedown', function (e) {
             $this.addRuler('x');
+            return false;
         });
 
         $(document).on('mousedown', ".ruler", function (e) {
             $this.movingRuler = $(this);
+            return false;
         });
     },