Last active
August 25, 2017 10:57
-
-
Save Pmmlabs/16a30a010aec2218b892bb003123dcdd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function addGroupToReplyList(id) { | |
var obj = [id,"","/","my_group"]; | |
if (!window.replyAsList) | |
replyAsList = []; | |
replyAsList.push(obj); | |
if (!window.replyAsData) | |
replyAsData = {}; | |
replyAsData[id]=obj; | |
} | |
addGroupToReplyList(-123456); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment