Ken Chan
Results
1
comments of
Ken Chan
A simple workaround I found to this is to change querySelector to querySelectorAll. Change this `var closeEl = angular.element(content[0].querySelector(settings.closeEl));` to this `var closeEl = angular.element(content[0].querySelectorAll(settings.closeEl));` When specifying closeEl in $scope.settings,...