Clean up.

This commit is contained in:
Gunther Brunner
2014-05-19 22:32:43 +09:00
parent 1c89235267
commit db298377ec
3 changed files with 1 additions and 92 deletions

View File

@@ -8,9 +8,6 @@ module.exports = function LogsCtrl($scope, LogcatService) {
$scope.started = LogcatService.started
$scope.$watch('started', function (newValue, oldValue) {
if (newValue !== oldValue) {
LogcatService.started = newValue
@@ -31,17 +28,4 @@ module.exports = function LogsCtrl($scope, LogcatService) {
LogcatService.clear()
}
$scope.addFastRow = function (val) {
var e = {
"serial": "1cd49783",
"date": 1399964036.984,
"pid": 9246,
"tid": 9540,
"priority": 3,
"tag": "MobileDataStateTracker",
"message": "default: setPolicyDataEnable(enabled=true)"
}
//console.log(val)
}
}