소도구:image-in-search-bar.js

최근 편집: 2022년 12월 25일 (일) 10:28
낙엽1124 (토론 | 기여)님의 2022년 12월 25일 (일) 10:28 판 (낙엽1124님이 소도구:Image-in-search-bar.js 문서를 넘겨주기를 만들지 않고 소도구:image-in-search-bar.js 문서로 이동했습니다)
// <nowiki>
(function () {
  'use strict';

  var today = new Date();

  if (today.getMonth() != 2 || today.getDate() != 8) {
    return;
  }

  var icon = document.createElement('div');
  icon.id = 'anniversary-icon';
  icon.innerHTML = '🥖🌹';
  document.getElementById('p-search').appendChild(icon);
})();
// </nowiki>