From c5b243de280e4fbd2f16d5666b13fa393f9fece4 Mon Sep 17 00:00:00 2001 From: Joshua Chia Date: Sat, 18 Apr 2026 02:49:10 +0800 Subject: [PATCH] Updated getScope() to specially treat set:all just like set:stackage --- html/hoogle.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/hoogle.js b/html/hoogle.js index 494746f6..8c0dbd83 100644 --- a/html/hoogle.js +++ b/html/hoogle.js @@ -74,7 +74,7 @@ $(function(){ if (!instant) return; function getScope(){ var v = $scope ? $scope.val() : ""; - return v == null || v == "set:stackage" ? "" : v; + return v == null || v == "set:stackage" || v == "set:all" ? "" : v; } var nowHoogle = $hoogle.val();