diff options
author | Samy Pessé <samypesse@gmail.com> | 2014-04-03 15:24:57 -0700 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2014-04-03 15:24:57 -0700 |
commit | c934238f3d877e7f774a4b9ec4f33a5342e3914b (patch) | |
tree | 0b03fab93550cfc93cdaa971d2fc222aa8f08e67 /Gruntfile.js | |
parent | ab489599688f53df5cb53c1661c53e5e320269ad (diff) | |
download | gitbook-c934238f3d877e7f774a4b9ec4f33a5342e3914b.zip gitbook-c934238f3d877e7f774a4b9ec4f33a5342e3914b.tar.gz gitbook-c934238f3d877e7f774a4b9ec4f33a5342e3914b.tar.bz2 |
Fix #9: add keyboard navigation using right/left
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index c3d477c..31cab30 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -33,6 +33,7 @@ module.exports = function (grunt) { "jQuery": 'vendors/jquery', "lodash": 'vendors/lodash', "requireLib": 'vendors/require', + "Mousetrap": 'vendors/mousetrap' }, shim: { 'jQuery': { @@ -40,6 +41,9 @@ module.exports = function (grunt) { }, 'lodash': { exports: '_' + }, + 'Mousetrap': { + exports: 'Mousetrap' } } } |