mirror of
https://github.com/jsbin/jsbin.git
synced 2026-01-25 15:38:56 +00:00
15 lines
378 B
JavaScript
15 lines
378 B
JavaScript
var $html = $(document.documentElement);
|
|
|
|
$('#tip a.dismiss').click(function () {
|
|
$html.removeClass('showtip');
|
|
$(window).resize();
|
|
sessionStorage.setItem('tips', 'false');
|
|
return false;
|
|
});
|
|
|
|
var showTips = sessionStorage.getItem('tips');
|
|
if (showTips === null) {
|
|
// $html.addClass('showtip');
|
|
}
|
|
|
|
// remove this setting after a few days (or a new set of tips come in)
|