diff --git a/CHANGELOG.md b/CHANGELOG.md index 23356226..edd122e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ * Split icon container dimensions and icon size * Fix delete button by using pixels instead of (r)em * Fix level on mobile +* Add new `.is-spaced` modifer for titles and subtitles ## 0.3.2 diff --git a/docs/javascript/bulma.js b/docs/javascript/bulma.js index 457a4c1f..b09722d4 100644 --- a/docs/javascript/bulma.js +++ b/docs/javascript/bulma.js @@ -24,6 +24,13 @@ jQuery(document).ready(function ($) { $('#modal-ter').removeClass('is-active'); }); + $(document).on('keyup',function(e) { + if (e.keyCode == 27) { + $('html').removeClass('is-clipped'); + $('.modal').removeClass('is-active'); + } + }); + var $highlights = $('.highlight'); $highlights.each(function() {