aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/settings/Debug.kt
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-10-25 12:41:05 -0400
committerGitHub <noreply@github.com>2017-10-25 12:41:05 -0400
commite04487f5b1a4c6a5999db8d9746a07919ae9a333 (patch)
tree4a60e9369dbb957c0f47f6052510433bc9d37e01 /app/src/main/kotlin/com/pitchedapps/frost/settings/Debug.kt
parent2d6b790643078b9b5ff2869c74dc941212087864 (diff)
downloadfrost-e04487f5b1a4c6a5999db8d9746a07919ae9a333.tar.gz
frost-e04487f5b1a4c6a5999db8d9746a07919ae9a333.tar.bz2
frost-e04487f5b1a4c6a5999db8d9746a07919ae9a333.zip
Update search logic (#444)
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/settings/Debug.kt')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/settings/Debug.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/settings/Debug.kt b/app/src/main/kotlin/com/pitchedapps/frost/settings/Debug.kt
index a4f4388f..7001275d 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/settings/Debug.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/settings/Debug.kt
@@ -48,8 +48,8 @@ fun SettingsActivity.getDebugPrefs(): KPrefAdapterBuilder.() -> Unit = {
private enum class Debugger(val data: FbItem, val injector: InjectorContract?, vararg query: String) {
MENU(FbItem.MENU, JsAssets.MENU_DEBUG, "#viewport"), //todo modify menu js for debugging
- NOTIFICATIONS(FbItem.NOTIFICATIONS, null, "#notifications_list"),
- SEARCH(FbItem.SEARCH, JsActions.FETCH_BODY);
+ NOTIFICATIONS(FbItem.NOTIFICATIONS, null, "#notifications_list");
+// SEARCH(FbItem.SEARCH, JsActions.FETCH_BODY);
val query = if (query.isNotEmpty()) arrayOf(*query, "#root", "main", "body") else emptyArray()