From: Chimo Date: Sat, 20 Jun 2015 23:35:43 +0000 (-0400) Subject: $.cookie('n', null) -> $.removeCookie as of 1.4.0 X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a25d952ef9ab458b875e6a250d101178b8a582bb;p=quix0rs-gnu-social.git $.cookie('n', null) -> $.removeCookie as of 1.4.0 --- 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); } },