sinatra-hexacta 1.6.1 → 1.6.2
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/lib/sinatra/public/js/app.js +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 426f83f4059ea172556ab6f353a970b55ce582fcdc7ed193aaf53f0beb3c91c4
|
|
4
|
+
data.tar.gz: 425d0637eb8ca6038df97f4cd5bf72e02c2308f21789429d18572d9f8006d34b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3e9518882b42c117cfd46163a91b7e45a74ff88590d776f00a7e09df7890c56810798b5c1a5216d5ae4d7c5d66a0ea4f3e560e511ecae6d17136fa104cc5193f
|
|
7
|
+
data.tar.gz: 8c55127e4507fee024d7c0ce178d91021d1087e00e5826aaab74aa065b99599f67bd3dbcac0bb1e818c5adcc9a14ff8597811bd9afe14bfcd4bd9c59a07832b9
|
|
@@ -25,7 +25,7 @@ $(document).ready(function(){
|
|
|
25
25
|
|
|
26
26
|
function update_html_elements() {
|
|
27
27
|
|
|
28
|
-
$("form.async").submit(function(e){
|
|
28
|
+
$("form.async").unbind("submit").submit(function(e){
|
|
29
29
|
e.preventDefault();
|
|
30
30
|
var datastring = $(this).serialize();
|
|
31
31
|
var url = $(this).attr('action');
|
|
@@ -33,6 +33,7 @@ function update_html_elements() {
|
|
|
33
33
|
$('body').append('<div aria-labelledby="loading" class="modal bounceIn animated" id="loading-modal" role="dialog" tabindex="-1" data-backdrop="static" data-keyboard="false"><div class="modal-dialog modal-sm" style="width:150px !Important;"><div class="modal-content"><div class="modal-body p-20 text-center"><div class="preloader pl-lg"><svg class="pl-circular" viewBox="25 25 50 50"><circle class="plc-path" cx="50" cy="50" r="20"></circle></svg></div></div><div class="modal-footer" style="text-align: center !Important;"><div class="btn btn-link waves-effect c-gray">Espere...</div></div></div></div></div>');
|
|
34
34
|
$('#loading-modal').modal('show');
|
|
35
35
|
$.ajax({
|
|
36
|
+
|
|
36
37
|
type: "POST",
|
|
37
38
|
url: url,
|
|
38
39
|
data: datastring,
|