[ONOS-7943] Error in topo layout overlay

Change-Id: If4d4fb999d85ea84cd911006f765fda45b11cb09
This commit is contained in:
Sean Condon 2019-03-04 22:16:20 +00:00
parent 11d10626f0
commit ae10293d63

View File

@ -31,6 +31,10 @@
});
}
function clear() {
// Nothing to do?
}
angular.module('ovTlTopov', [])
.factory('LayoutTopovService',
['$log', 'FlashService', 'WebSocketService',
@ -41,7 +45,8 @@
wss = _wss_;
return {
doLayout: doLayout
doLayout: doLayout,
clear: clear
};
}]);
}());