apollo_developers/assets/js/directives/messages.js
venbatechnologies@gmail.com 1809bcf9c9 fixed table for student details
2018-04-23 18:34:11 +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;
});
}
};
}]);