tailog 0.6.3 → 0.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/views/script/index.erb +3 -4
- data/lib/tailog/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2f4bbe82b52a7fdf5f9d754e5088dc99bd453ea3
|
|
4
|
+
data.tar.gz: 5719525299be253ab1063c4f7fd57006f1efcc4d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 332005270de07797549a15cdafa1aa879c71a4cd6fdda163c749cf08cc5ec9bdfbe1663f9aaf013c6d329bc847460035a1291381285831456f57dd39a4577cb8
|
|
7
|
+
data.tar.gz: 8b759620f2b55557ff262ac263a1d5bb86ee1c5aa756d3790633dbfc044110f36f675efd411cf095b9c3c4b8f21c86ec4fddaf0acb7c46ca399e4ced65967e21
|
data/app/views/script/index.erb
CHANGED
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
.append('<span class="text-info">' + data.server_hostname + " - " + data.process_uuid + "</span>")
|
|
71
71
|
.append(ansi_up.ansi_to_html(data.content));
|
|
72
72
|
} catch (error) {
|
|
73
|
-
console.error(error)
|
|
73
|
+
console.error(error);
|
|
74
74
|
}
|
|
75
75
|
}
|
|
76
76
|
});
|
|
@@ -106,8 +106,7 @@
|
|
|
106
106
|
},
|
|
107
107
|
error: function() {
|
|
108
108
|
$content
|
|
109
|
-
.
|
|
110
|
-
.append('<span class="text-danger">Oops! Something went wrong, please try again later!</span>')
|
|
109
|
+
.append('<hr/><span class="text-danger">Oops! Something went wrong, but we will carry on!</span>');
|
|
111
110
|
},
|
|
112
111
|
success: function(json) {
|
|
113
112
|
try {
|
|
@@ -128,7 +127,7 @@
|
|
|
128
127
|
$progressBar.width(percent + "%");
|
|
129
128
|
|
|
130
129
|
} catch (error) {
|
|
131
|
-
console.error(error)
|
|
130
|
+
console.error(error);
|
|
132
131
|
}
|
|
133
132
|
},
|
|
134
133
|
complete: function() {
|
data/lib/tailog/version.rb
CHANGED