incline 0.3.12 → 0.3.13
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/Gemfile.lock +1 -1
- data/app/assets/javascripts/incline/inline_actions.js +1 -1
- data/lib/incline/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: 8df3892120c5d2d79030d23887876699dd8f9fc1
|
|
4
|
+
data.tar.gz: dbee94030879aa9c7bd621b289207dd404258c47
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 15e56285c3ad0af6d233af28b64e0fc24193d86afeffb24be105362897cc2b8c039eeffc9029a25832a4e2472d70c841683d73877428e40b245d40ab2810caf1
|
|
7
|
+
data.tar.gz: 20b93f40607f13315732315945096d852a64613bb074141c07d6f3970fe7f03782ed9d60fca33ac62478f58515a1cba50055fbc34ae518924eac20e6c85768ce
|
data/Gemfile.lock
CHANGED
|
@@ -97,7 +97,7 @@ var inclineInline = {
|
|
|
97
97
|
var message = data.messages[i];
|
|
98
98
|
var html = '<div id="alert-' + ts.toString() + '" class="alert alert-' + escapeHTML(message.type) + ' alert-dismissible fade in" role="alert">' +
|
|
99
99
|
'<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>' +
|
|
100
|
-
escapeHTML(message.text) +
|
|
100
|
+
escapeHTML(message.text).replace(/\n/g, "<br>\n") +
|
|
101
101
|
'</div>';
|
|
102
102
|
var close = '$(\'#alert-' + ts.toString() + '\').alert(\'close\');';
|
|
103
103
|
alertDiv.prepend(html);
|
data/lib/incline/version.rb
CHANGED