jstree-actions
Advanced tools
Comparing version 0.0.11 to 0.0.12
{ | ||
"name": "jstree-actions", | ||
"version": "0.0.11", | ||
"version": "0.0.12", | ||
"description": "jstree plugin that allows adding actions on each node", | ||
@@ -5,0 +5,0 @@ "main": "jstree-actions.js", |
@@ -26,3 +26,3 @@ # jstree-actions | ||
* class <- string (a string containing all the classes you want to add to the action (space separated) | ||
* selector <- a selector that would specify where to insert the action. Note that this is a plain JavaScript selector and not a jQuery one. | ||
* selector <- a selector that would specify where to insert the action. | ||
* after <- bool (insert the action after (true) or before (false) the element matching the <selector> key | ||
@@ -34,3 +34,3 @@ * event <- string The event on which the trigger will be called | ||
* - the id's are strictly compared (===) | ||
* - the selector has access to all children on nodes with leafs/children, so most probably you'd want to use :first or similar | ||
* - the selector is a plain JavaScript selector and not a jQuery one | ||
*/ | ||
@@ -60,3 +60,3 @@ | ||
"after": true, | ||
"selector": "a:first", | ||
"selector": "a", | ||
"event": "click", | ||
@@ -75,3 +75,3 @@ "callback": function(node_id, node, action_id, action_el){ | ||
"after": true, | ||
"selector": "a:first", | ||
"selector": "a", | ||
"event": "click", | ||
@@ -78,0 +78,0 @@ "callback": function(node_id, node, action_id, action_el){ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
92693