Edited by cfxm, 25 January 2013 - 04:36 PM.
How To Disable Irc?
#1
Posted 25 January 2013 - 04:35 PM
#2
Posted 25 January 2013 - 04:37 PM
#3
Posted 25 January 2013 - 04:40 PM
If I log in again, it enables the IRC again.
Edited by cfxm, 25 January 2013 - 04:41 PM.
#4
Posted 25 January 2013 - 05:03 PM
#5
Posted 25 January 2013 - 05:39 PM
#6
Posted 25 January 2013 - 07:18 PM
When I close my browser, everything is deleted. Too much bad stuff is stored by some websites and this information is possibly exploitable by some unknown browser vulnerabilities.It should remember whether you wnt it on and off with a cookie. Do you have cookies enabled?
This setting has to be stored inside my account data on the server. It works on Omnimaga for example.
- Casimo likes this
#7
Posted 25 January 2013 - 09:53 PM
userscript: http://www24.zippysh...94592/file.html
source code:
// ==UserScript== // @name Casiocalc IRC Hide // @namespace http://community.casiocalc.org/ // @description Hide IRC widget in forum // @author helder7 // @homepage http://community.casiocalc.org/ // @match http://community.casiocalc.org/* // @run-at document-start // ==/UserScript== (function() { var css = "#casiocalcirc {display: none}"; if (typeof GM_addStyle != "undefined") { GM_addStyle(css); } else if (typeof PRO_addStyle != "undefined") { PRO_addStyle(css); } else if (typeof addStyle != "undefined") { addStyle(css); } else { var heads = document.getElementsByTagName("head"); if (heads.length > 0) { var node = document.createElement("style"); node.type = "text/css"; node.appendChild(document.createTextNode(css)); heads[0].appendChild(node); } } })();
- MicroPro likes this
#8
Posted 26 January 2013 - 08:45 PM
- MicroPro likes this
#9
Posted 28 January 2013 - 03:01 PM
#10
Posted 28 January 2013 - 07:32 PM
#11
Posted 28 January 2013 - 07:44 PM
I agree to Casimo. Then the chat will be a bit "smartphonefriendly".Maybe it's possible to get more speed? For example You could load only 5 messages and the rest can be displayed with a "show all" - button...
- MicroPro likes this
#12
Posted 28 January 2013 - 08:13 PM
#13
Posted 31 January 2013 - 11:57 PM
What browser are you using?
#14
Posted 01 February 2013 - 12:30 AM
#15
Posted 01 February 2013 - 08:30 PM
#16
Posted 02 February 2013 - 05:32 PM
2 user(s) are reading this topic
0 members, 2 guests, 0 anonymous users