1
0
mirror of https://github.com/webslides/WebSlides.git synced 2025-09-16 07:52:11 +02:00

Compare commits

...

3 Commits
1.3.0 ... 1.3.2

Author SHA1 Message Date
Antonio Laguna
71121169f0 1.3.2 2017-07-28 11:57:47 +02:00
Antonio Laguna
f6ac24007a 1.3.1 2017-04-26 20:08:04 +02:00
Antonio Laguna
d592006bfa Ensuring the navigation works on any iOS device
Fixes #79
2017-04-26 20:07:15 +02:00
4 changed files with 9 additions and 9 deletions

View File

@@ -1,8 +1,8 @@
{
"name": "webslides",
"version": "1.3.0",
"version": "1.3.2",
"description": "Making HTML presentations easy",
"main": "index.js",
"main": "static/js/webslides.js",
"repository": {
"type": "git",
"url": "git+https://github.com/webslides/webslides.git"

View File

@@ -26,7 +26,7 @@ export default class MobileDetector {
* @return {Boolean}
*/
static isiOS() {
return !!UA.match(/iPhone/i);
return !!UA.match(/iPad|iPhone|iPod/i);
}
/**

View File

@@ -1,7 +1,7 @@
/*!
* Name: WebSlides
* Version: 1.3.0
* Date: 2017-04-20
* Version: 1.3.1
* Date: 2017-04-26
* Description: Making HTML presentations easy
* URL: https://github.com/webslides/webslides#readme
* Credits: @jlantunez, @LuisSacristan, @Belelros
@@ -587,7 +587,7 @@ var MobileDetector = function () {
}, {
key: "isiOS",
value: function isiOS() {
return !!UA.match(/iPhone/i);
return !!UA.match(/iPad|iPhone|iPod/i);
}
/**

File diff suppressed because one or more lines are too long