Преглед на файлове

Avoid <a> links redirections on inlinedForm

Fixes #647 (IE 11)
Maxime Quandalle преди 9 години
родител
ревизия
3ed00f3db7
променени са 1 файла, в които са добавени 3 реда и са изтрити 1 реда
  1. 3 1
      client/lib/inlinedform.js

+ 3 - 1
client/lib/inlinedform.js

@@ -28,7 +28,9 @@ InlinedForm = BlazeComponent.extendComponent({
     currentlyOpenedForm.set(null);
   },
 
-  open() {
+  open(evt) {
+    evt.preventDefault();
+
     // Close currently opened form, if any
     EscapeActions.executeUpTo('inlinedForm');
     this.isOpen.set(true);