MediaWiki:Gadget-Searchbox-popout.js:修订间差异

MediaWiki界面页面
(创建页面,内容为“→‎<pre>:​ "use strict"; $(function () { var $simpleSearch = $("#simpleSearch"); $("input#searchInput").on({ focus: function () { $simpleSearch.animate({ width: 339 }, 339); }, blur: function () { $simpleSearch.animate({ width: 226 }, 339); } }); }); →‎</pre>:​
 
(// Edit via Wikiplus)
 
(未显示同一用户的1个中间版本)
第1行: 第1行:
/* <pre> */
/* <pre> */


"use strict";
"use strict";
$(function () {
$(function () {
     var $simpleSearch = $("#simpleSearch");
     $("#p-search").prependTo("#p-personal .vector-menu-content-list");
    $("input#searchInput").on({
        focus: function () {
            $simpleSearch.animate({
                width: 339
            }, 339);
        },
        blur: function () {
            $simpleSearch.animate({
                width: 226
            }, 339);
        }
    });
});  
});  


/* </pre> */
/* </pre> */

2024年6月21日 (五) 22:15的最新版本

 /* <pre> */

"use strict";
$(function () {
    $("#p-search").prependTo("#p-personal .vector-menu-content-list");
}); 

/* </pre> */