From 94e8e39312d134dbffe86bd0ec6c8f556c0520a7 Mon Sep 17 00:00:00 2001 From: Tim Griesser Date: Wed, 4 Jun 2014 16:47:56 -0400 Subject: [PATCH] truncate the change log to make the page a bit easier to search --- index.html | 554 +++++++++++++++++++++++++++-------------------------- 1 file changed, 283 insertions(+), 271 deletions(-) diff --git a/index.html b/index.html index f8ad40b5..b876d708 100644 --- a/index.html +++ b/index.html @@ -2203,321 +2203,327 @@ $ npm test For More information, see this pull-request.

-

- 0.5.15June 4, 2014Diff
- Dropped indexes feature now functions correctly, (#278). -

+

Show Full Change log

-

- 0.5.14May 6, 2014Diff
- Remove the charset encoding if it's utf8 for mysql, as it's the default but also - currently causes some issues in recent versions of node-mysql. -

+ @@ -2536,7 +2542,6 @@ $ npm test var mysql = dialects.mysql = Knex({client: 'mysql'}); var sqlite3 = dialects.sqlite3 = Knex({client: 'sqlite3'}); - $(function() { var setDialect = function(dialect) { $.cookie('dialect', dialect, { expires: 7, path: '/' }); @@ -2563,6 +2568,13 @@ $ npm test }); $('.js-query-output').val(currentDialect); displayDialect(currentDialect); + + // Don't show the full change log. + $(".js-change-log").on('click', function(e) { + e.preventDefault(); + $(this).remove(); + $('.change-log').show(); + }); });