Skip to content

Instantly share code, notes, and snippets.

View Joshua2504's full-sized avatar
💥
Focusing

Joshua Treudler Joshua2504

💥
Focusing
View GitHub Profile
@techjewel
techjewel / ninja-table-snippets.js
Last active October 11, 2023 21:32
Ninja Tables Custom JS Snippets for many functionalities
// By default ninja tables keeps open each row for expanding
// You can add the following js then it will keep expanded one row at a time
var currentExpandRow = false;
$table.on('expanded.ft.row', function (e, ft, selfArg) {
if(currentExpandRow == selfArg) {
return;
}
currentExpandRow = selfArg;
ft.rows.collapse();
selfArg.expand();
@Scrumplex
Scrumplex / sharex_uploader.sxcu
Last active December 23, 2019 08:23
ShareX Uploader (PHP)
{
"Name": "example.com",
"DestinationType": "None",
"RequestType": "POST",
"RequestURL": "http://example.com/upload.php",
"FileFormName": "upload",
"Arguments": {
"password": "password"
},
"ResponseType": "Text"