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)
第3行: 第3行:
"use strict";
"use strict";
$(function () {
$(function () {
     var $simpleSearch = $("#simpleSearch");
     $("#p-search").prependTo("#p-personal");
    $("input#searchInput").on({
        focus: function () {
            $simpleSearch.animate({
                width: 339
            }, 339);
        },
        blur: function () {
            $simpleSearch.animate({
                width: 226
            }, 339);
        }
    });
});  
});  


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

2024年6月21日 (五) 22:09的版本

/* <pre> */

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

/* </pre> */