Browse Source

document events are only triggerable on elements

Evan Almloff 1 year ago
parent
commit
b91e97ca43
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/core/src/virtual_dom.rs

+ 2 - 2
packages/core/src/virtual_dom.rs

@@ -318,9 +318,9 @@ impl VirtualDom {
         }
     }
 
-    /// Call a listener inside the VirtualDom with data from outside the VirtualDom.
+    /// Call a listener inside the VirtualDom with data from outside the VirtualDom. **The ElementId passed in must be the id of an dynamic element, not a static node or a text node.**
     ///
-    /// This method will identify the appropriate element. The data must match up with the listener delcared. Note that
+    /// This method will identify the appropriate element. The data must match up with the listener declared. Note that
     /// this method does not give any indication as to the success of the listener call. If the listener is not found,
     /// nothing will happen.
     ///