diff --git a/src/aura/DualSelect/DualSelectController.js b/src/aura/DualSelect/DualSelectController.js new file mode 100644 index 0000000..9a4c471 --- /dev/null +++ b/src/aura/DualSelect/DualSelectController.js @@ -0,0 +1,8 @@ +({ + moveLeftToRight : function(component,event, helper){ + helper.moveItems(component,'left'); + }, + moveRightToLeft : function(component,event, helper){ + helper.moveItems(component,'right'); + }, +})