Browse Source

Deleted checkTooltip for edge downlinks

pull/3957/head
deaflynx 5 years ago
parent
commit
a60f3630e8
  1. 8
      ui/src/app/edge/downlinks/edge-downlinks-row.directive.js

8
ui/src/app/edge/downlinks/edge-downlinks-row.directive.js

@ -92,14 +92,6 @@ export default function EdgeDownlinksRowDirective($compile, $templateCache, $mdD
type === types.edgeEventType.widgetsBundle );
}
scope.checkTooltip = function($event) {
var el = $event.target;
var $el = angular.element(el);
if(el.offsetWidth < el.scrollWidth && !$el.attr('title')){
$el.attr('title', $el.text());
}
}
$compile(element.contents())(scope);
scope.updateStatus = function(downlinkCreatedTime) {

Loading…
Cancel
Save