Guest User

Untitled

a guest
Jan 13th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <script language="JavaScript">
  2. // this bit of code will replace the "Saving..." text\animation with "Envoi..." (or whatever you want in there)
  3. // put it inside the <body> tag in layout.html
  4. $(document).ajaxStart(function() {
  5. $('.form-submitting').html("<img src='/assets/bert-loader-small.gif' width='16' height='11'>Envoi...");
  6. });
  7. </script>
Add Comment
Please, Sign In to add comment