업데이트 README.md, .github/README.en.md
[liberty-mw-skin.git] / js / disable-notice.js
blob171f3abe91aae5448953b22847ae4a7f89bc857a
1 $( function () {
2         'use strict';
3         $( '.liberty-notice' ).on( 'closed.bs.alert', function () {
4                 mw.cookie.set( 'disable-notice', true, { expires: 3600 * 24, secure: false } );
5         } );
6 } );