Skip to content

Commit

Permalink
Update to 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
IonDen committed Sep 8, 2013
1 parent 137b15d commit fe0c08a
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 11 deletions.
5 changes: 3 additions & 2 deletions ion-sound.jquery.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ion-sound",
"version": "1.0.1",
"version": "1.0.2",
"title": "Ion.Sound",
"description": "Plugin for playing sounds on events. Today websites are full of events (new mail, new chat-message, content update etc.). Often it is not enough to indicate this events only visually to get user attention. You need sounds! This library, made for playing small sounds, will help you with this task.",
"keywords": [
Expand All @@ -10,6 +10,7 @@
"html5",
"events",
"alert",
"effect",
"mp3",
"ogg",
"ui"
Expand All @@ -28,7 +29,7 @@
"homepage": "https://github.com/IonDen/ion.sound",
"docs": "https://github.com/IonDen/ion.sound/blob/master/readme.md",
"demo": "http://ionden.com/a/plugins/ion.sound/en.html",
"download": "http://ionden.com/a/plugins/ion.sound/ion.sound-1.0.1.zip",
"download": "http://ionden.com/a/plugins/ion.sound/ion.sound-1.0.2.zip",
"dependencies": {
"jquery": ">=1.9"
}
Expand Down
6 changes: 4 additions & 2 deletions js/ion-sound/ion.sound.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Ion.Sound
// version 1.0.1 Build: 4
// version 1.0.2 Build: 6
// © 2013 Denis Ineshin | IonDen.com
//
// Project page: http://ionden.com/a/plugins/ion.sound/en.html
Expand Down Expand Up @@ -87,7 +87,9 @@ ion.sound = {
if($sound.ended) {
$sound.play();
} else {
$sound.currentTime = 0;
try {
$sound.currentTime = 0;
} catch (e) {}
$sound.play();
}
}
Expand Down
6 changes: 3 additions & 3 deletions js/ion-sound/ion.sound.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Ion.Sound 1.0.1
# Ion.Sound 1.0.2

> English description | <a href="readme.ru.md">Описание на русском</a>
Plugin for playing sounds on events.
* <a href="http://ionden.com/a/plugins/ion.sound/en.html">Project page and demos</a>
* <a href="http://ionden.com/a/plugins/ion.sound/ion.sound-1.0.1.zip">Download ion.sound-1.0.1.zip</a>
* <a href="http://ionden.com/a/plugins/ion.sound/ion.sound-1.0.2.zip">Download ion.sound-1.0.2.zip</a>

***

Expand Down Expand Up @@ -113,5 +113,6 @@ $("#myButton").on("click", function(){


## Update history
* September 08, 2013 - iOS not playing sound bug fix
* September 08, 2013 - Little enhancement
* September 07, 2013 - Plugin release
5 changes: 3 additions & 2 deletions readme.ru.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Ion.Sound 1.0.1
# Ion.Sound 1.0.2

> <a href="readme.md">English description</a> | Описание на русском
Плагин для воспроизведения звуков событий.
* <a href="http://ionden.com/a/plugins/ion.sound/index.html">Сайт проекта и демо</a>
* <a href="http://ionden.com/a/plugins/ion.sound/ion.sound-1.0.1.zip">Скачать ion.sound-1.0.1.zip</a>
* <a href="http://ionden.com/a/plugins/ion.sound/ion.sound-1.0.2.zip">Скачать ion.sound-1.0.2.zip</a>

***

Expand Down Expand Up @@ -110,5 +110,6 @@ $("#myButton").on("click", function(){


## История обновлений
* 08.09.2013 - исправлен баг в iOS
* 08.09.2013 - небольшое улучшение
* 07.09.2013 - релиз плагина

0 comments on commit fe0c08a

Please sign in to comment.