From a25d952ef9ab458b875e6a250d101178b8a582bb Mon Sep 17 00:00:00 2001 From: Chimo Date: Sat, 20 Jun 2015 19:35:43 -0400 Subject: [PATCH] $.cookie('n', null) -> $.removeCookie as of 1.4.0 --- js/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/util.js b/js/util.js index 9cde30ebf4..cd982bbb17 100644 --- a/js/util.js +++ b/js/util.js @@ -1297,7 +1297,7 @@ var SN = { // StatusNet * @fixme what is this? */ Delete: function () { - $.cookie(SN.C.S.StatusNetInstance, null); + $.removeCookie(SN.C.S.StatusNetInstance); } },