// _________________________________________________________________________________________
// | |
// | === WARNING: GLOBAL GADGET FILE === |
// | Changes to this page affect many users. |
// | Please discuss changes on the talk page or on [[Wikipedia_talk:Gadget]] before editing. |
// |_________________________________________________________________________________________|
//
// Imports [[User:Cacycle/wikEd.js]]
// wikEd is a full-featured in-browser editor for Wikipedia, see [[User:Cacycle/wikEd]]
// Không tải trong IE; không cần thiết nhưng có thể đỡ tốn vài mili giây
if (navigator.appName !== 'Microsoft Internet Explorer') {
var wikEdConfig = {};
wikEdConfig.languageDefault = 'vi';
// Tải [[:en:User:Cacycle/wikEd]]
// Không dùng hàm importScript(), importScriptURI(), or mw.loader.load() vì chúng sẽ gây ảnh hưởng đến cơ chế cài đặt của mã nguồn và làm chậm quá trình khởi động
(function() {
var script = document.createElement('script');
script.src = '//en.wikipedia.org/w/index.php?title=User:Cacycle/wikEd.js&action=raw&ctype=text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);
})();
}