Skip to content

Commit

Permalink
Fix the 'pre code' selector ajax issue (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
M. Mert Yıldıran authored Mar 21, 2021
1 parent 532f007 commit e0205a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mockintosh/res/management.html
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ <h1>

if (val) {
var data = new FormData();
data.append(val, new Blob([$("#config pre").text()]), val);
data.append(val, new Blob([$("#config pre code").text()]), val);
$.ajax("./resources", {
data: data,
type: 'POST',
Expand Down Expand Up @@ -835,4 +835,4 @@ <h1>
</script>

</body>
</html>
</html>

0 comments on commit e0205a7

Please sign in to comment.