Guest User

Untitled

a guest
Jun 17th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function loadTemplate(index) {
  2. $.ajax({
  3. url: 'functions.php',
  4. type: 'get',
  5. data: {
  6. action: 'get_template',
  7. template: index
  8. },
  9. success: function(response) {
  10. resetZoom();
  11. $('.editor-wrap').html(response);
  12. }
  13. });
  14. }
Add Comment
Please, Sign In to add comment