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(); + }); });