This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+-----------------+-------------------+-----------------------------------------------------------------+ | |
| Thread Safety | Processor | English Title | | |
+-----------------+-------------------+-----------------------------------------------------------------+ | |
| Thread safe | QGIS (3D) | Tessellate | | |
+-----------------+-------------------+-----------------------------------------------------------------+ | |
| Thread safe | Contour plugin | Generate Contours | | |
+-----------------+-------------------+-----------------------------------------------------------------+ | |
| Thread safe | GDAL | Aspect | | |
+-----------------+-------------------+-----------------------------------------------------------------+ | |
| Thread safe | GDAL | Assign projection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).on('click', '.gv-button-delete', async function (e) { | |
e.preventDefault(); //prevent submission | |
console.log('Intercepted delete button request'); | |
var delLoc = ""; | |
(function ($) { | |
var delLoc2 = $('.gv-button-delete').attr("href"); //capture default action, because we need the time-valid nonce | |
delLoc = delLoc2; | |
}(jQuery)); | |
var objID = document.getElementById("input_4_40").value; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).on('click', '.gv-button-delete', function (e) { | |
e.preventDefault(); //prevent submission | |
console.log('Intercepted delete button request'); | |
var delLoc = ""; | |
(function ($) { | |
var delLoc2 = $('.gv-button-delete').attr("href"); //capture default action, because we need the time-valid nonce | |
delLoc = delLoc2; | |
}(jQuery)); | |
var objID = document.getElementById("input_4_40").value; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).on('click', '.gv-button-delete', function (e) { | |
e.preventDefault(); //prevent submission | |
console.log('Intercepted delete button request'); | |
var delLoc = ""; | |
(function ($) { | |
var delLoc2 = $('.gv-button-delete').attr("href"); //capture default action, because we need the time-valid nonce | |
delLoc = delLoc2; | |
}(jQuery)); | |
var objID = document.getElementById("input_4_40").value; |