MediaWiki:Gadget-libBottomRightCorner.js:修订间差异
跳到导航
跳到搜索
小 (导入1个版本) |
无编辑摘要 |
||
第1行: | 第1行: | ||
"use strict"; | "use strict"; | ||
$(function () { | $(function () { | ||
第16行: | 第8行: | ||
}; | }; | ||
}); | }); | ||
2024年1月2日 (二) 23:30的最新版本
"use strict"; $(function () { var body = document.body; var bottomRightCorner = $("<div>").attr("id", "bottomRightCorner"); bottomRightCorner.appendTo(body); window.insertToBottomRightCorner = function (text) { return $("<div>").text(text).appendTo(bottomRightCorner); }; });