This is my controller code:
var selectableFields = ["customerName", "customerAddress"]; angular.forEach(selectableFields, function(field, key) { var value = $.jStorage.get(field);
The goal is to have access to {{customerName}} and {{customerAddress}} in the view. Can someone please tell me how to do it right?
source share