1
0
mirror of https://github.com/webslides/WebSlides.git synced 2025-08-24 13:53:21 +02:00

Fixing minus and plus buttons for index in Chrome

This commit is contained in:
Luis Sacristán
2017-08-06 12:50:52 +02:00
parent 6699407c08
commit e523998f1e
4 changed files with 8 additions and 8 deletions

View File

@@ -9,8 +9,8 @@ const Keys = {
UP: 38,
RIGHT: 39,
DOWN: 40,
PLUS: [107, 171],
MINUS: [109, 173],
PLUS: [107, 171, 187],
MINUS: [109, 173, 189],
ESCAPE: 27,
F: 70
};

View File

@@ -1,7 +1,7 @@
/*!
* Name: WebSlides
* Version: 1.3.1
* Date: 2017-08-04
* Date: 2017-08-06
* Description: Making HTML presentations easy
* URL: https://github.com/webslides/webslides#readme
* Credits: @jlantunez, @LuisSacristan, @Belelros

View File

@@ -1,7 +1,7 @@
/*!
* Name: WebSlides
* Version: 1.3.1
* Date: 2017-08-04
* Date: 2017-08-06
* Description: Making HTML presentations easy
* URL: https://github.com/webslides/webslides#readme
* Credits: @jlantunez, @LuisSacristan, @Belelros
@@ -567,8 +567,8 @@ var Keys = {
UP: 38,
RIGHT: 39,
DOWN: 40,
PLUS: [107, 171],
MINUS: [109, 173],
PLUS: [107, 171, 187],
MINUS: [109, 173, 189],
ESCAPE: 27,
F: 70
};

File diff suppressed because one or more lines are too long