()
| 523 | |
| 524 | // 获取知乎 Cookie 中的主题类型 |
| 525 | function getTheme() { |
| 526 | let name = 'theme=', |
| 527 | ca = document.cookie.split(';'); |
| 528 | for (let i=0; i<ca.length; i++) { |
| 529 | let c = ca[i].trim(); |
| 530 | if (c.indexOf(name)==0) return c.substring(name.length,c.length); |
| 531 | } |
| 532 | return 'light'; |
| 533 | } |
| 534 | |
| 535 | // 修改知乎 Cookie 中的主题类型 |
| 536 | function setTheme(theme) { |
no outgoing calls
no test coverage detected