Skip to content

Commit

Permalink
Expermineting to drag results
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrikBuetler committed Jun 18, 2024
1 parent f3b978a commit 2f5ddea
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions api/ui/results.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,11 @@ public function get() {
echo gettype($job) . "<br>";
// $job[0] should be ID
foreach ($job as $element) {
echo gettype($element) . "<br>";
echo 'Element: ' . $element. "<br>";
//echo gettype($element) . "<br>";
//echo 'Element: ' . $element. "<br>";
if ($element === this->get['uid']) {
echo "found element. swap!";
}
}
}
break;
Expand Down

0 comments on commit 2f5ddea

Please sign in to comment.