apollodec/Apollo/assets/js/directives/messages.js
venbatechnologies@gmail.com d06b1c0cba status file
2017-12-07 11:31:25 +05:30

15 lines
345 B
JavaScript
Executable File

'use strict';
/**
* Returns the id of the selected e-mail.
*/
app.directive('messageItem', ['$location', function ($location) {
return {
restrict: 'EA',
link: function (scope, elem, attrs) {
elem.on("click tap", function (e) {
var id = attrs.messageItem;
});
}
};
}]);