Guest User

Untitled

a guest
Jul 18th, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function after_load_data_area() {
  2.     $(".drinker").click(function () {
  3.         event.preventDefault();
  4.         $("#edit_window").text("Loading ...");
  5.         $("#edit_window").dialog({
  6.             resizable: false,
  7.             height: 600,
  8.             width: 600,
  9.             modal: true,
  10.             buttons: {
  11.                 "Zapisz": function () {
  12.                     $(this).dialog("close");
  13.                 },
  14.                 "Anuluj": function () {
  15.                     $(this).dialog("close");
  16.                 }
  17.             }
  18.         });
  19.     });
  20. }
  21.  
  22. function reload_data_area() {
  23.     if (data_url.length > 1) {
  24.         $("#right_area").fadeOut(200);
  25.         $("#right_area").load('http://saveoctagon.com/' + data_url + '&ajax=ON', function (response, status, xhr) {
  26.  
  27.             if (status === "success") {
  28.                 $("#right_area").fadeIn(200);
  29.                 after_load_data_area();
  30.             }
  31.  
  32.             if (status === "error") {
  33.                 $.notiny({text: 'Błąd połączenia!'});
  34.             }
  35.  
  36.         });
  37.         document.location.hash = data_url;
  38.     }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment