From a76fd8226239287e7a03aa08226051e94d737df4 Mon Sep 17 00:00:00 2001 From: sbwalker Date: Tue, 4 Mar 2025 16:25:10 -0500 Subject: [PATCH] sync interop.js changes with .NET MAUI --- Oqtane.Maui/wwwroot/js/interop.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Oqtane.Maui/wwwroot/js/interop.js b/Oqtane.Maui/wwwroot/js/interop.js index 719eb63e..191d9823 100644 --- a/Oqtane.Maui/wwwroot/js/interop.js +++ b/Oqtane.Maui/wwwroot/js/interop.js @@ -14,6 +14,9 @@ Oqtane.Interop = { } document.cookie = cookieString; }, + setCookieString: function (cookieString) { + document.cookie = cookieString; + }, getCookie: function (name) { name = name + "="; var decodedCookie = decodeURIComponent(document.cookie);