This file contains 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
//For ssfw.xmu.edu.cn | |
console.log(function (window, document) { | |
return ['BEGIN:VCALENDAR\nPRODID:-//Google Inc//Google Calendar 70.9054//EN\nVERSION:2.0\n'].concat([] | |
//Get target | |
.slice.call(document.querySelectorAll('div')) | |
.filter(function (el) { | |
return el.className.indexOf('fcSpanDiv') > -1; | |
}) | |
//Extract content | |
.map(function (el) { |
This file contains 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 (window, ko, $) { | |
var obj = ko.dataFor($("#topic")[0]); | |
if (!obj) | |
obj = init(); | |
(function () { | |
if (!obj) | |
return 0; | |
var fn = arguments.callee; | |
if (!obj.isEndTopic()) { | |
$("#topic #tableid_" + (obj.displayIndex() - 1) + " input[rbl=100]").attr("checked", 1); |