├── .gitignore
├── Gruntfile.js
├── README.md
├── bower.json
├── dist
├── css
│ ├── font
│ │ ├── DroidSansMono
│ │ │ ├── DroidSansMono.eot
│ │ │ ├── DroidSansMono.svg
│ │ │ ├── DroidSansMono.ttf
│ │ │ ├── DroidSansMono.woff
│ │ │ ├── Google Android License.txt
│ │ │ ├── demo.html
│ │ │ └── stylesheet.css
│ │ └── mbAudioFont
│ │ │ ├── master
│ │ │ ├── mbaudio_font-regular.otf
│ │ │ └── mbaudio_font.glyphs
│ │ │ ├── mbaudio_font.eot
│ │ │ ├── mbaudio_font.svg
│ │ │ ├── mbaudio_font.ttf
│ │ │ ├── mbaudio_font.woff
│ │ │ └── stylesheet.css
│ ├── jQuery.mb.miniAudioPlayer.min.css
│ ├── jquery.mb.miniAudioPlayer.css
│ └── spectrum.min.css
├── index.html
├── jquery.mb.miniAudioPlayer.js
├── jquery.mb.miniAudioPlayer.min.js
├── php
│ └── map_download.php
├── skinMaker.html
├── swf
│ └── jquery.jplayer.swf
└── test.html
├── examples
├── demo.html
└── demo_auto_play_next.html
├── licenses
├── GPL-LICENSE.txt
└── MIT-LICENSE.txt
├── package.json
├── resources
├── id3
│ ├── binaryajax.js
│ ├── id3-minimized.js
│ ├── id3.js
│ └── id3.min.js
├── jquery.jplayer.swf
├── map_download.php
└── spectrum-cp
│ ├── spectrum.css
│ └── spectrum.js
└── src
├── css
├── font
│ ├── DroidSansMono
│ │ ├── DroidSansMono.eot
│ │ ├── DroidSansMono.svg
│ │ ├── DroidSansMono.ttf
│ │ ├── DroidSansMono.woff
│ │ ├── Google Android License.txt
│ │ ├── demo.html
│ │ └── stylesheet.css
│ └── mbAudioFont
│ │ ├── master
│ │ ├── mbaudio_font-regular.otf
│ │ └── mbaudio_font.glyphs
│ │ ├── mbaudio_font.eot
│ │ ├── mbaudio_font.svg
│ │ ├── mbaudio_font.ttf
│ │ ├── mbaudio_font.woff
│ │ └── stylesheet.css
└── jquery.mb.miniAudioPlayer.css
├── dep
├── id3.min.js
├── jquery.jplayer.min.js
├── jquery.mb.CSSAnimate.min.js
├── jquery.mbBrowser.min.js
└── jquery.metadata.js
├── index.tmpl
├── jquery.mb.miniPlayer.src.js
└── skinMaker.tmpl
/.gitignore:
--------------------------------------------------------------------------------
1 |
2 | .DS_Store
3 |
--------------------------------------------------------------------------------
/Gruntfile.js:
--------------------------------------------------------------------------------
1 | /*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
2 | jquery.mb.components
3 |
4 | file: Gruntfile.js
5 | last modified: 10/25/18 8:01 PM
6 | Version: {{ version }}
7 | Build: {{ buildnum }}
8 |
9 | Open Lab s.r.l., Florence - Italy
10 | email: matteo@open-lab.com
11 | blog: http://pupunzi.open-lab.com
12 | site: http://pupunzi.com
13 | http://open-lab.com
14 |
15 | Licences: MIT, GPL
16 | http://www.opensource.org/licenses/mit-license.php
17 | http://www.gnu.org/licenses/gpl.html
18 |
19 | Copyright (c) 2001-2018. Matteo Bicocchi (Pupunzi)
20 | :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
21 |
22 | module.exports = function(grunt) {
23 |
24 | grunt.initConfig({
25 | pkg: grunt.file.readJSON('package.json'),
26 |
27 | copy: {
28 | dist: {
29 | files: [
30 | {flatten: true, expand: true, cwd: '../jquery.mb.browser/inc/', src: ['jquery.mbBrowser.min.js'], dest: 'src/dep/'},
31 | {flatten: true, expand: true, cwd: '../jquery.mb.CSSAnimate/inc/', src: ['jquery.mb.CSSAnimate.min.js'], dest: 'src/dep/'},
32 | {flatten: false, expand: true, cwd: 'src/css/', src: ['*.css'], dest: 'dist/css/'},
33 | {flatten: false, expand: true, cwd: 'src/css/font/', src: ['**'], dest: 'dist/css/font/'},
34 | {flatten: false, expand: true, cwd: 'resources/', src: ['*.swf'], dest: 'dist/swf/'},
35 | {flatten: false, expand: true, cwd: 'resources/', src: ['*.php'], dest: 'dist/php/'},
36 | {flatten: true, expand: true, cwd: 'src/', src: ['*.tmpl'], dest: 'dist/',
37 | rename: function(dest, src) {
38 | return dest + src.replace('.tmpl','.html');
39 | }}
40 | ]
41 | }
42 | },
43 |
44 | concat: {
45 | options: {
46 | separator: ';'
47 | },
48 | dist: {
49 | src: [ 'src/*.js','src/dep/*.js'],
50 | dest: 'dist/<%= pkg.title %>.js'
51 | }
52 | },
53 |
54 | uglify: {
55 | options: {
56 | banner: '/*' +
57 | '<%= pkg.title %> <%= grunt.template.today("dd-mm-yyyy") %>\n' +
58 | ' _ jquery.mb.components \n' +
59 | ' _ email: matbicoc@gmail.com \n' +
60 | ' _ Copyright (c) 2001-<%= grunt.template.today("yyyy") %>. Matteo Bicocchi (Pupunzi); \n' +
61 | ' _ blog: http://pupunzi.open-lab.com \n' +
62 | ' _ Open Lab s.r.l., Florence - Italy \n' +
63 | ' */ \n'
64 | },
65 |
66 | dist: {
67 | files: {
68 | 'dist/<%= pkg.title %>.min.js': ['<%= concat.dist.dest %>']
69 | }
70 | }
71 | },
72 |
73 | cssmin: {
74 | options: {
75 | shorthandCompacting: false,
76 | roundingPrecision: -1
77 | },
78 | dist: {
79 | files: {
80 | 'dist/css/<%= pkg.title %>.min.css': ['src/css/*.css'],
81 | 'dist/css/spectrum.min.css': ['resources/spectrum-cp/spectrum.css']
82 | }
83 | }
84 | },
85 |
86 | includereplace: {
87 | dist: {
88 | options: {
89 | prefix: '{{ ',
90 | suffix: ' }}',
91 | globals: {
92 | version: '<%= pkg.version %>',
93 | pkg_name: '<%= pkg.title %>'
94 | }
95 | },
96 | files: [
97 | {src: 'dist/*.js', expand: true},
98 | {src: 'dist/*.html', expand: true},
99 | {src: 'dist/css/*.css', expand: true}
100 | ]
101 | }
102 | },
103 |
104 | watch: {
105 | files: ['src/css/*.css','src/*.js','src/*.html', 'Gruntfile.js'],
106 | tasks: ['copy','concat', 'uglify', 'cssmin', 'includereplace']
107 | },
108 |
109 | buildnumber: {
110 | options: {
111 | field: 'buildnum'
112 | },
113 | files: ['package.json', 'bower.json']
114 | },
115 |
116 | bump: {
117 | options: {
118 | files: ['package.json', 'bower.json'],
119 | updateConfigs: [],
120 | commit: true,
121 | commitMessage: 'Release v%VERSION%',
122 | commitFiles: ['-a'],
123 | createTag: true,
124 | tagName: '%VERSION%',
125 | tagMessage: 'Version %VERSION%',
126 | push: true,
127 | pushTo: 'https://github.com/pupunzi/jquery.mb.miniAudioPlayer.git',
128 | gitDescribeOptions: '--tags --always --abbrev=1 --dirty=-d',
129 | globalReplace: false,
130 | prereleaseName: false,
131 | regExp: false
132 | }
133 | }
134 |
135 | });
136 |
137 | grunt.loadNpmTasks('grunt-include-replace');
138 | grunt.loadNpmTasks('grunt-contrib-copy');
139 | grunt.loadNpmTasks('grunt-contrib-uglify');
140 | grunt.loadNpmTasks('grunt-contrib-concat');
141 | grunt.loadNpmTasks('grunt-contrib-cssmin');
142 | grunt.loadNpmTasks('grunt-contrib-watch');
143 | grunt.loadNpmTasks('grunt-build-number');
144 | grunt.loadNpmTasks('grunt-bump');
145 |
146 | grunt.registerTask('buildN', ['buildnumber']);
147 | grunt.registerTask('default', ['copy','concat', 'uglify', 'cssmin', 'includereplace', 'buildnumber']);
148 |
149 | };
150 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # mb.miniAudioPlayer
2 |
3 | __An open source jQuery component to build a mini audio player for your mp3 or ogg files.__
4 |
5 | jquery.mb.miniPlayer is a GUI implementation of the jquery.jPlayer plug-in realized by © Happyworm LTD. (many thanks to Mark Boas )
6 |
7 | 
8 |
9 | [jquery.mb.components](http://pupunzi.com/), another way of thinking the web
10 |
--------------------------------------------------------------------------------
/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "jquery.mb.miniAudioPlayer",
3 | "version": "1.8.7",
4 | "homepage": "http://pupunzi.open-lab.com/mb-jquery-components/jquery-mb-miniaudioplayer/",
5 | "authors": [
6 | "pupunzi"
7 | ],
8 | "description": "This plugin let you add a minimal full featured player that takes advantage of the new HTML5 AUDIO tag with a flash fallback for browsers that don't support it. It is built on the jPlayer library",
9 | "main": "src/jquery.mb.miniPlayer.src.js",
10 | "keywords": [
11 | "jquery-plugin",
12 | "audio",
13 | "html5",
14 | "player"
15 | ],
16 | "license": "MIT",
17 | "ignore": [
18 | "**/.*",
19 | "node_modules",
20 | "bower_components",
21 | "test",
22 | "tests"
23 | ],
24 | "buildnum": "49926"
25 | }
--------------------------------------------------------------------------------
/dist/css/font/DroidSansMono/DroidSansMono.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pupunzi/jquery.mb.miniAudioPlayer/486646d91dc6785724435a640f80ac44a0b4315b/dist/css/font/DroidSansMono/DroidSansMono.eot
--------------------------------------------------------------------------------
/dist/css/font/DroidSansMono/DroidSansMono.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pupunzi/jquery.mb.miniAudioPlayer/486646d91dc6785724435a640f80ac44a0b4315b/dist/css/font/DroidSansMono/DroidSansMono.ttf
--------------------------------------------------------------------------------
/dist/css/font/DroidSansMono/DroidSansMono.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pupunzi/jquery.mb.miniAudioPlayer/486646d91dc6785724435a640f80ac44a0b4315b/dist/css/font/DroidSansMono/DroidSansMono.woff
--------------------------------------------------------------------------------
/dist/css/font/DroidSansMono/Google Android License.txt:
--------------------------------------------------------------------------------
1 | Copyright (C) 2008 The Android Open Source Project
2 |
3 | Licensed under the Apache License, Version 2.0 (the "License");
4 | you may not use this file except in compliance with the License.
5 | You may obtain a copy of the License at
6 |
7 | http://www.apache.org/licenses/LICENSE-2.0
8 |
9 | Unless required by applicable law or agreed to in writing, software
10 | distributed under the License is distributed on an "AS IS" BASIS,
11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 | See the License for the specific language governing permissions and
13 | limitations under the License.
14 |
15 | ##########
16 |
17 | This directory contains the fonts for the platform. They are licensed
18 | under the Apache 2 license.
19 |
--------------------------------------------------------------------------------
/dist/css/font/DroidSansMono/demo.html:
--------------------------------------------------------------------------------
1 |
21 |
22 |
24 |
25 |
26 |
27 |
46 |
Font-face Demo for the Droid Sans Mono Font
47 |
48 |
49 |
50 |
Droid Sans Mono Regular - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
51 |
52 |
53 |
54 |
55 |
--------------------------------------------------------------------------------
/dist/css/font/DroidSansMono/stylesheet.css:
--------------------------------------------------------------------------------
1 | /*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
2 | jquery.mb.components
3 |
4 | file: stylesheet.css
5 | last modified: 10/25/18 8:01 PM
6 | Version: {{ version }}
7 | Build: {{ buildnum }}
8 |
9 | Open Lab s.r.l., Florence - Italy
10 | email: matteo@open-lab.com
11 | blog: http://pupunzi.open-lab.com
12 | site: http://pupunzi.com
13 | http://open-lab.com
14 |
15 | Licences: MIT, GPL
16 | http://www.opensource.org/licenses/mit-license.php
17 | http://www.gnu.org/licenses/gpl.html
18 |
19 | Copyright (c) 2001-2018. Matteo Bicocchi (Pupunzi)
20 | :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
21 |
22 | /* Generated by Font Squirrel (http://www.fontsquirrel.com) on May 19, 2011 05:14:32 AM America/New_York */
23 |
24 |
25 |
26 | @font-face {
27 | font-family: 'DroidSansMonoRegular';
28 | src: url('DroidSansMono.eot');
29 | src: url('DroidSansMono.eot?#iefix') format('embedded-opentype'),
30 | url('DroidSansMono.woff') format('woff'),
31 | url('DroidSansMono.ttf') format('truetype'),
32 | url('DroidSansMono.svg#DroidSansMonoRegular') format('svg');
33 | font-weight: normal;
34 | font-style: normal;
35 |
36 | }
37 |
38 |
--------------------------------------------------------------------------------
/dist/css/font/mbAudioFont/master/mbaudio_font-regular.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pupunzi/jquery.mb.miniAudioPlayer/486646d91dc6785724435a640f80ac44a0b4315b/dist/css/font/mbAudioFont/master/mbaudio_font-regular.otf
--------------------------------------------------------------------------------
/dist/css/font/mbAudioFont/master/mbaudio_font.glyphs:
--------------------------------------------------------------------------------
1 | {
2 | copyright = "Copyright (c) 2010 by mb.ideas. All rights reserved.";
3 | customParameters = (
4 | {
5 | name = vendorID;
6 | value = "MB ";
7 | },
8 | {
9 | name = glyphOrder;
10 | value = (
11 | ".notdef",
12 | uni0000,
13 | uni000D,
14 | uni00A0,
15 | F,
16 | N,
17 | O,
18 | P,
19 | R,
20 | S,
21 | V,
22 | l,
23 | m,
24 | p,
25 | uni2000,
26 | uni2001,
27 | uni2002,
28 | uni2003,
29 | uni2004,
30 | uni2005,
31 | uni2006,
32 | uni2007,
33 | uni2008,
34 | uni2009,
35 | uni200A,
36 | endash,
37 | emdash,
38 | uni202F,
39 | uni205F
40 | );
41 | }
42 | );
43 | date = "2010-07-11 13:49:44 +0000";
44 | designer = "Matteo Bicocchi";
45 | familyName = "mbaudio_font";
46 | fontMaster = (
47 | {
48 | ascender = 1536;
49 | capHeight = 1216;
50 | customParameters = (
51 | {
52 | name = typoAscender;
53 | value = 1536;
54 | },
55 | {
56 | name = typoDescender;
57 | value = "-512";
58 | },
59 | {
60 | name = typoLineGap;
61 | value = 0;
62 | },
63 | {
64 | name = underlinePosition;
65 | value = "-154";
66 | }
67 | );
68 | descender = "-512";
69 | id = "4C42F807-EDC7-4526-B56E-0964A4331130";
70 | weightValue = 400;
71 | widthValue = 5;
72 | xHeight = 1216;
73 | }
74 | );
75 | glyphs = (
76 | {
77 | glyphname = F;
78 | layers = (
79 | {
80 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130";
81 | name = Regular;
82 | paths = (
83 | {
84 | closed = 1;
85 | nodes = (
86 | "1618 576 LINE",
87 | "978 -64 LINE",
88 | "978 1216 LINE"
89 | );
90 | },
91 | {
92 | closed = 1;
93 | nodes = (
94 | "928 576 LINE",
95 | "288 -64 LINE",
96 | "288 1216 LINE"
97 | );
98 | },
99 | {
100 | closed = 1;
101 | nodes = (
102 | "1772 -64 LINE",
103 | "1644 -64 LINE",
104 | "1644 1216 LINE",
105 | "1772 1216 LINE"
106 | );
107 | }
108 | );
109 | width = 2048;
110 | }
111 | );
112 | unicode = 0046;
113 | },
114 | {
115 | glyphname = N;
116 | layers = (
117 | {
118 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130";
119 | name = Regular;
120 | paths = (
121 | {
122 | closed = 1;
123 | nodes = (
124 | "1602 -64 LINE",
125 | "962 576 LINE",
126 | "1602 1216 LINE"
127 | );
128 | },
129 | {
130 | closed = 1;
131 | nodes = (
132 | "912 -64 LINE",
133 | "272 576 LINE",
134 | "912 1216 LINE"
135 | );
136 | }
137 | );
138 | width = 2048;
139 | }
140 | );
141 | unicode = 004E;
142 | },
143 | {
144 | glyphname = O;
145 | layers = (
146 | {
147 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130";
148 | name = Regular;
149 | paths = (
150 | {
151 | closed = 1;
152 | nodes = (
153 | "1082 576 LINE",
154 | "442 -64 LINE",
155 | "442 1216 LINE"
156 | );
157 | },
158 | {
159 | closed = 1;
160 | nodes = (
161 | "1772 576 LINE",
162 | "1132 -64 LINE",
163 | "1132 1216 LINE"
164 | );
165 | }
166 | );
167 | width = 2048;
168 | }
169 | );
170 | unicode = 004F;
171 | },
172 | {
173 | glyphname = P;
174 | layers = (
175 | {
176 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130";
177 | name = Regular;
178 | paths = (
179 | {
180 | closed = 1;
181 | nodes = (
182 | "1408 640 LINE",
183 | "768 0 LINE",
184 | "768 1280 LINE"
185 | );
186 | }
187 | );
188 | width = 2048;
189 | }
190 | );
191 | unicode = 0050;
192 | },
193 | {
194 | glyphname = R;
195 | layers = (
196 | {
197 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130";
198 | name = Regular;
199 | paths = (
200 | {
201 | closed = 1;
202 | nodes = (
203 | "1772 -64 LINE",
204 | "1132 576 LINE",
205 | "1772 1216 LINE"
206 | );
207 | },
208 | {
209 | closed = 1;
210 | nodes = (
211 | "1082 -64 LINE",
212 | "442 576 LINE",
213 | "1082 1216 LINE"
214 | );
215 | },
216 | {
217 | closed = 1;
218 | nodes = (
219 | "416 -64 LINE",
220 | "288 -64 LINE",
221 | "288 1216 LINE",
222 | "416 1216 LINE"
223 | );
224 | }
225 | );
226 | width = 2048;
227 | }
228 | );
229 | unicode = 0052;
230 | },
231 | {
232 | glyphname = S;
233 | layers = (
234 | {
235 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130";
236 | name = Regular;
237 | paths = (
238 | {
239 | closed = 1;
240 | nodes = (
241 | "1600 38 LINE",
242 | "448 38 LINE",
243 | "448 1190 LINE",
244 | "1600 1190 LINE"
245 | );
246 | }
247 | );
248 | width = 2048;
249 | }
250 | );
251 | unicode = 0053;
252 | },
253 | {
254 | glyphname = V;
255 | layers = (
256 | {
257 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130";
258 | name = Regular;
259 | paths = (
260 | {
261 | closed = 1;
262 | nodes = (
263 | "900 -93 LINE",
264 | "430 341 LINE",
265 | "132 341 LINE",
266 | "132 927 LINE",
267 | "430 927 LINE",
268 | "900 1362 LINE"
269 | );
270 | }
271 | );
272 | width = 1100;
273 | }
274 | );
275 | unicode = 0056;
276 | },
277 | {
278 | glyphname = l;
279 | lastChange = "2014-11-04 20:08:02 +0100";
280 | layers = (
281 | {
282 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130";
283 | name = Regular;
284 | paths = (
285 | {
286 | closed = 1;
287 | nodes = (
288 | "750 958 OFFCURVE",
289 | "733 941 OFFCURVE",
290 | "700 941 CURVE SMOOTH",
291 | "684 941 OFFCURVE",
292 | "617 976 OFFCURVE",
293 | "498 1045 CURVE SMOOTH",
294 | "285 1173 LINE SMOOTH",
295 | "268 1183 OFFCURVE",
296 | "259 1197 OFFCURVE",
297 | "259 1215 CURVE SMOOTH",
298 | "259 1250 OFFCURVE",
299 | "276 1267 OFFCURVE",
300 | "309 1267 CURVE SMOOTH",
301 | "325 1267 OFFCURVE",
302 | "392 1232 OFFCURVE",
303 | "511 1163 CURVE SMOOTH",
304 | "724 1035 LINE SMOOTH",
305 | "741 1025 OFFCURVE",
306 | "750 1011 OFFCURVE",
307 | "750 992 CURVE SMOOTH"
308 | );
309 | },
310 | {
311 | closed = 1;
312 | nodes = (
313 | "750 597 OFFCURVE",
314 | "733 580 OFFCURVE",
315 | "700 580 CURVE SMOOTH",
316 | "250 580 LINE SMOOTH",
317 | "217 580 OFFCURVE",
318 | "200 597 OFFCURVE",
319 | "200 630 CURVE SMOOTH",
320 | "200 663 OFFCURVE",
321 | "217 680 OFFCURVE",
322 | "250 680 CURVE SMOOTH",
323 | "700 680 LINE SMOOTH",
324 | "733 680 OFFCURVE",
325 | "750 663 OFFCURVE",
326 | "750 630 CURVE SMOOTH"
327 | );
328 | },
329 | {
330 | closed = 1;
331 | nodes = (
332 | "750 242 OFFCURVE",
333 | "741 228 OFFCURVE",
334 | "724 218 CURVE SMOOTH",
335 | "511 90 LINE SMOOTH",
336 | "392 20 OFFCURVE",
337 | "325 -15 OFFCURVE",
338 | "309 -15 CURVE SMOOTH",
339 | "276 -15 OFFCURVE",
340 | "259 2 OFFCURVE",
341 | "259 37 CURVE SMOOTH",
342 | "259 55 OFFCURVE",
343 | "268 69 OFFCURVE",
344 | "285 79 CURVE SMOOTH",
345 | "498 207 LINE SMOOTH",
346 | "617 277 OFFCURVE",
347 | "684 312 OFFCURVE",
348 | "700 312 CURVE SMOOTH",
349 | "733 312 OFFCURVE",
350 | "750 295 OFFCURVE",
351 | "750 260 CURVE SMOOTH"
352 | );
353 | }
354 | );
355 | width = 900;
356 | }
357 | );
358 | unicode = 006C;
359 | },
360 | {
361 | glyphname = m;
362 | layers = (
363 | {
364 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130";
365 | name = Regular;
366 | paths = (
367 | {
368 | closed = 1;
369 | nodes = (
370 | "641 1197 OFFCURVE",
371 | "632 1183 OFFCURVE",
372 | "615 1173 CURVE SMOOTH",
373 | "402 1045 LINE SMOOTH",
374 | "283 976 OFFCURVE",
375 | "216 941 OFFCURVE",
376 | "200 941 CURVE SMOOTH",
377 | "167 941 OFFCURVE",
378 | "150 958 OFFCURVE",
379 | "150 992 CURVE SMOOTH",
380 | "150 1011 OFFCURVE",
381 | "159 1025 OFFCURVE",
382 | "176 1035 CURVE SMOOTH",
383 | "389 1163 LINE SMOOTH",
384 | "508 1232 OFFCURVE",
385 | "575 1267 OFFCURVE",
386 | "591 1267 CURVE SMOOTH",
387 | "624 1267 OFFCURVE",
388 | "641 1250 OFFCURVE",
389 | "641 1215 CURVE SMOOTH"
390 | );
391 | },
392 | {
393 | closed = 1;
394 | nodes = (
395 | "700 597 OFFCURVE",
396 | "683 580 OFFCURVE",
397 | "650 580 CURVE SMOOTH",
398 | "200 580 LINE SMOOTH",
399 | "167 580 OFFCURVE",
400 | "150 597 OFFCURVE",
401 | "150 630 CURVE SMOOTH",
402 | "150 663 OFFCURVE",
403 | "167 680 OFFCURVE",
404 | "200 680 CURVE SMOOTH",
405 | "650 680 LINE SMOOTH",
406 | "683 680 OFFCURVE",
407 | "700 663 OFFCURVE",
408 | "700 630 CURVE SMOOTH"
409 | );
410 | },
411 | {
412 | closed = 1;
413 | nodes = (
414 | "641 2 OFFCURVE",
415 | "624 -15 OFFCURVE",
416 | "591 -15 CURVE SMOOTH",
417 | "575 -15 OFFCURVE",
418 | "508 20 OFFCURVE",
419 | "389 90 CURVE SMOOTH",
420 | "176 218 LINE SMOOTH",
421 | "159 228 OFFCURVE",
422 | "150 242 OFFCURVE",
423 | "150 260 CURVE SMOOTH",
424 | "150 295 OFFCURVE",
425 | "167 312 OFFCURVE",
426 | "200 312 CURVE SMOOTH",
427 | "216 312 OFFCURVE",
428 | "283 277 OFFCURVE",
429 | "402 207 CURVE SMOOTH",
430 | "615 79 LINE SMOOTH",
431 | "632 69 OFFCURVE",
432 | "641 55 OFFCURVE",
433 | "641 37 CURVE SMOOTH"
434 | );
435 | }
436 | );
437 | width = 900;
438 | }
439 | );
440 | unicode = 006D;
441 | },
442 | {
443 | glyphname = p;
444 | layers = (
445 | {
446 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130";
447 | name = Regular;
448 | paths = (
449 | {
450 | closed = 1;
451 | nodes = (
452 | "1383 -64 LINE",
453 | "1127 -64 LINE",
454 | "1127 1216 LINE",
455 | "1383 1216 LINE"
456 | );
457 | },
458 | {
459 | closed = 1;
460 | nodes = (
461 | "871 -64 LINE",
462 | "615 -64 LINE",
463 | "615 1216 LINE",
464 | "871 1216 LINE"
465 | );
466 | }
467 | );
468 | width = 2048;
469 | }
470 | );
471 | unicode = 0070;
472 | },
473 | {
474 | glyphname = d;
475 | lastChange = "2014-11-04 20:23:20 +0100";
476 | layers = (
477 | {
478 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130";
479 | name = Regular;
480 | paths = (
481 | {
482 | closed = 1;
483 | nodes = (
484 | "2 403 OFFCURVE",
485 | "105 224 OFFCURVE",
486 | "273 128 CURVE",
487 | "357 80 OFFCURVE",
488 | "449 56 OFFCURVE",
489 | "548 56 CURVE",
490 | "649 56 OFFCURVE",
491 | "740 80 OFFCURVE",
492 | "821 128 CURVE",
493 | "989 224 OFFCURVE",
494 | "1094 405 OFFCURVE",
495 | "1094 602 CURVE",
496 | "1094 799 OFFCURVE",
497 | "989 977 OFFCURVE",
498 | "822 1075 CURVE",
499 | "738 1124 OFFCURVE",
500 | "647 1148 OFFCURVE",
501 | "548 1148 CURVE",
502 | "352 1148 OFFCURVE",
503 | "171 1042 OFFCURVE",
504 | "75 875 CURVE",
505 | "26 792 OFFCURVE",
506 | "2 701 OFFCURVE",
507 | "2 602 CURVE"
508 | );
509 | },
510 | {
511 | closed = 1;
512 | nodes = (
513 | "275 600 LINE SMOOTH",
514 | "479 600 LINE SMOOTH",
515 | "479 875 LINE SMOOTH",
516 | "616 875 LINE SMOOTH",
517 | "616 600 LINE SMOOTH",
518 | "820 600 LINE SMOOTH",
519 | "548 329 LINE SMOOTH"
520 | );
521 | }
522 | );
523 | width = 1092;
524 | }
525 | );
526 | unicode = 0064;
527 | }
528 | );
529 | disablesNiceNames = 1;
530 | instances = (
531 | {
532 | name = regular;
533 | }
534 | );
535 | unitsPerEm = 2048;
536 | versionMajor = 1;
537 | versionMinor = 0;
538 | }
539 |
--------------------------------------------------------------------------------
/dist/css/font/mbAudioFont/mbaudio_font.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pupunzi/jquery.mb.miniAudioPlayer/486646d91dc6785724435a640f80ac44a0b4315b/dist/css/font/mbAudioFont/mbaudio_font.eot
--------------------------------------------------------------------------------
/dist/css/font/mbAudioFont/mbaudio_font.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
184 |
185 |
186 |
187 |
--------------------------------------------------------------------------------
/dist/php/map_download.php:
--------------------------------------------------------------------------------
1 | Something goes wrong, you don\'t have permission to use this page, sorry.');
68 |
69 | /*unset($_SESSION['maphost']);
70 | setcookie('maphost', 'false', time() - 3600, '/');*/
71 |
72 | //die("protocol= ". $protocol . " ---- web_address= ". $web_address . " ---- web_root= " . $web_root ." ----- file url= " . $file_url ." ----- file path= " . $file_path . " ---- file name= " . $file_name . " ---- maphost= " . $_SESSION['maphost']);
73 |
74 | function getFileSize($url)
75 | {
76 | if (substr($url, 0, 4) == 'http') {
77 | $x = array_change_key_case(get_headers($url, 1), CASE_LOWER);
78 | if (strcasecmp($x[0], 'HTTP/1.1 200 OK') != 0) {
79 | $x = $x['content-length'][1];
80 | } else {
81 | $x = $x['content-length'];
82 | }
83 | } else {
84 | $x = @filesize($url);
85 | }
86 | return $x;
87 | }
88 |
89 | $fileSize = getFileSize($file_url);
90 |
91 | function fileExists($path)
92 | {
93 | return (@fopen($path,"r")==true);
94 | }
95 |
96 | if (!file_exists($file_path) || !fileExists($file_path))
97 | die("
188 |
189 |
190 |
191 |
--------------------------------------------------------------------------------
/examples/demo_auto_play_next.html:
--------------------------------------------------------------------------------
1 |
21 |
22 |
23 |
24 |
25 |
26 |
152 |
mb.miniAudioPlayer.demo - auto play next player
153 |
154 | This is a GUI implementation of
Happyworm jPlayer
155 | plugin , an HTML5 audio engine, developed on jQuery framework, that let you listen mp3 and ogg file over
156 | the html5 audio tag where supported or using an invisible flash player where not supported.
157 | For more informations about html5 browsers' support go to
jPlayer documentation site .
159 |
160 |
Customize the player skin
161 |
162 |
Airport Gate (Boarding)
164 |
165 |
Group Talking
167 |
168 |
Water Stream
170 | (Small)
171 |
172 |
Doorbell
174 |
175 |
Antique Car
177 | & Honk
178 |
179 |
180 |
play
181 |
stop
182 |
183 |
Play Next
184 |
185 |
186 |
187 | All the music are provided by
© pacdv.com .
188 |
189 |
190 |
191 | Here is a demo of a custom behaviour applied as callback for the "end" event of each player:
192 |
193 | The first player has the "autoPlay" parameter set as true and therefor it'll start playing on page load; once
194 | one of the audio played ends the next player will start playing.
195 |
196 | If is the last player playing it starts over from the first.
197 |
198 | This behaviour can't works on iOs devices due to their security restrictions.
199 |
200 |
201 | // this is the initializer function
202 |
203 | $(".audio").mb_miniPlayer({
204 | width:240,
205 | inLine:false,
206 | onEnd:playNext
207 | });
208 |
209 | // and this is function invoked as 'onEnd' callback
210 | // Both the onPlay and onEnd callback functions receive the index of the player as parameter.
211 |
212 | function playNext(idx){
213 | setTimeout(()=>{
214 | var players=$(".audio");
215 | document.playerIDX = idx+1 <= players.length-1 ? idx+1 : 0;
216 | players.eq(document.playerIDX).mb_miniPlayer_play();
217 | }, 1000);
218 | }
219 |
220 |
221 |
222 |
jquery.mb.miniPlayer is a GUI implementation of the
jquery.jPlayer
223 | plug-in realized by © Happyworm LTD. (many thanks to
Mark
224 | Boas )
225 |
226 |
227 |
228 |
--------------------------------------------------------------------------------
/licenses/GPL-LICENSE.txt:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 2, June 1991
3 |
4 | Copyright (C) 2001, 2011 Open Lab srl.
5 | via Venezia 18b - 50121 Firenze, Italia
6 |
7 | Everyone is permitted to copy and distribute verbatim copies
8 | of this license document, but changing it is not allowed.
9 |
10 | Preamble
11 |
12 | The licenses for most software are designed to take away your
13 | freedom to share and change it. By contrast, the GNU General Public
14 | License is intended to guarantee your freedom to share and change free
15 | software--to make sure the software is free for all its users. This
16 | General Public License applies to most of the Free Software
17 | Foundation's software and to any other program whose authors commit to
18 | using it. (Some other Free Software Foundation software is covered by
19 | the GNU Lesser General Public License instead.) You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | this service if you wish), that you receive source code or can get it
26 | if you want it, that you can change the software or use pieces of it
27 | in new free programs; and that you know you can do these things.
28 |
29 | To protect your rights, we need to make restrictions that forbid
30 | anyone to deny you these rights or to ask you to surrender the rights.
31 | These restrictions translate to certain responsibilities for you if you
32 | distribute copies of the software, or if you modify it.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must give the recipients all the rights that
36 | you have. You must make sure that they, too, receive or can get the
37 | source code. And you must show them these terms so they know their
38 | rights.
39 |
40 | We protect your rights with two steps: (1) copyright the software, and
41 | (2) offer you this license which gives you legal permission to copy,
42 | distribute and/or modify the software.
43 |
44 | Also, for each author's protection and ours, we want to make certain
45 | that everyone understands that there is no warranty for this free
46 | software. If the software is modified by someone else and passed on, we
47 | want its recipients to know that what they have is not the original, so
48 | that any problems introduced by others will not reflect on the original
49 | authors' reputations.
50 |
51 | Finally, any free program is threatened constantly by software
52 | patents. We wish to avoid the danger that redistributors of a free
53 | program will individually obtain patent licenses, in effect making the
54 | program proprietary. To prevent this, we have made it clear that any
55 | patent must be licensed for everyone's free use or not licensed at all.
56 |
57 | The precise terms and conditions for copying, distribution and
58 | modification follow.
59 |
60 | GNU GENERAL PUBLIC LICENSE
61 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
62 |
63 | 0. This License applies to any program or other work which contains
64 | a notice placed by the copyright holder saying it may be distributed
65 | under the terms of this General Public License. The "Program", below,
66 | refers to any such program or work, and a "work based on the Program"
67 | means either the Program or any derivative work under copyright law:
68 | that is to say, a work containing the Program or a portion of it,
69 | either verbatim or with modifications and/or translated into another
70 | language. (Hereinafter, translation is included without limitation in
71 | the term "modification".) Each licensee is addressed as "you".
72 |
73 | Activities other than copying, distribution and modification are not
74 | covered by this License; they are outside its scope. The act of
75 | running the Program is not restricted, and the output from the Program
76 | is covered only if its contents constitute a work based on the
77 | Program (independent of having been made by running the Program).
78 | Whether that is true depends on what the Program does.
79 |
80 | 1. You may copy and distribute verbatim copies of the Program's
81 | source code as you receive it, in any medium, provided that you
82 | conspicuously and appropriately publish on each copy an appropriate
83 | copyright notice and disclaimer of warranty; keep intact all the
84 | notices that refer to this License and to the absence of any warranty;
85 | and give any other recipients of the Program a copy of this License
86 | along with the Program.
87 |
88 | You may charge a fee for the physical act of transferring a copy, and
89 | you may at your option offer warranty protection in exchange for a fee.
90 |
91 | 2. You may modify your copy or copies of the Program or any portion
92 | of it, thus forming a work based on the Program, and copy and
93 | distribute such modifications or work under the terms of Section 1
94 | above, provided that you also meet all of these conditions:
95 |
96 | a) You must cause the modified files to carry prominent notices
97 | stating that you changed the files and the date of any change.
98 |
99 | b) You must cause any work that you distribute or publish, that in
100 | whole or in part contains or is derived from the Program or any
101 | part thereof, to be licensed as a whole at no charge to all third
102 | parties under the terms of this License.
103 |
104 | c) If the modified program normally reads commands interactively
105 | when run, you must cause it, when started running for such
106 | interactive use in the most ordinary way, to print or display an
107 | announcement including an appropriate copyright notice and a
108 | notice that there is no warranty (or else, saying that you provide
109 | a warranty) and that users may redistribute the program under
110 | these conditions, and telling the user how to view a copy of this
111 | License. (Exception: if the Program itself is interactive but
112 | does not normally print such an announcement, your work based on
113 | the Program is not required to print an announcement.)
114 |
115 | These requirements apply to the modified work as a whole. If
116 | identifiable sections of that work are not derived from the Program,
117 | and can be reasonably considered independent and separate works in
118 | themselves, then this License, and its terms, do not apply to those
119 | sections when you distribute them as separate works. But when you
120 | distribute the same sections as part of a whole which is a work based
121 | on the Program, the distribution of the whole must be on the terms of
122 | this License, whose permissions for other licensees extend to the
123 | entire whole, and thus to each and every part regardless of who wrote it.
124 |
125 | Thus, it is not the intent of this section to claim rights or contest
126 | your rights to work written entirely by you; rather, the intent is to
127 | exercise the right to control the distribution of derivative or
128 | collective works based on the Program.
129 |
130 | In addition, mere aggregation of another work not based on the Program
131 | with the Program (or with a work based on the Program) on a volume of
132 | a storage or distribution medium does not bring the other work under
133 | the scope of this License.
134 |
135 | 3. You may copy and distribute the Program (or a work based on it,
136 | under Section 2) in object code or executable form under the terms of
137 | Sections 1 and 2 above provided that you also do one of the following:
138 |
139 | a) Accompany it with the complete corresponding machine-readable
140 | source code, which must be distributed under the terms of Sections
141 | 1 and 2 above on a medium customarily used for software interchange; or,
142 |
143 | b) Accompany it with a written offer, valid for at least three
144 | years, to give any third party, for a charge no more than your
145 | cost of physically performing source distribution, a complete
146 | machine-readable copy of the corresponding source code, to be
147 | distributed under the terms of Sections 1 and 2 above on a medium
148 | customarily used for software interchange; or,
149 |
150 | c) Accompany it with the information you received as to the offer
151 | to distribute corresponding source code. (This alternative is
152 | allowed only for noncommercial distribution and only if you
153 | received the program in object code or executable form with such
154 | an offer, in accord with Subsection b above.)
155 |
156 | The source code for a work means the preferred form of the work for
157 | making modifications to it. For an executable work, complete source
158 | code means all the source code for all modules it contains, plus any
159 | associated interface definition files, plus the scripts used to
160 | control compilation and installation of the executable. However, as a
161 | special exception, the source code distributed need not include
162 | anything that is normally distributed (in either source or binary
163 | form) with the major components (compiler, kernel, and so on) of the
164 | operating system on which the executable runs, unless that component
165 | itself accompanies the executable.
166 |
167 | If distribution of executable or object code is made by offering
168 | access to copy from a designated place, then offering equivalent
169 | access to copy the source code from the same place counts as
170 | distribution of the source code, even though third parties are not
171 | compelled to copy the source along with the object code.
172 |
173 | 4. You may not copy, modify, sublicense, or distribute the Program
174 | except as expressly provided under this License. Any attempt
175 | otherwise to copy, modify, sublicense or distribute the Program is
176 | void, and will automatically terminate your rights under this License.
177 | However, parties who have received copies, or rights, from you under
178 | this License will not have their licenses terminated so long as such
179 | parties remain in full compliance.
180 |
181 | 5. You are not required to accept this License, since you have not
182 | signed it. However, nothing else grants you permission to modify or
183 | distribute the Program or its derivative works. These actions are
184 | prohibited by law if you do not accept this License. Therefore, by
185 | modifying or distributing the Program (or any work based on the
186 | Program), you indicate your acceptance of this License to do so, and
187 | all its terms and conditions for copying, distributing or modifying
188 | the Program or works based on it.
189 |
190 | 6. Each time you redistribute the Program (or any work based on the
191 | Program), the recipient automatically receives a license from the
192 | original licensor to copy, distribute or modify the Program subject to
193 | these terms and conditions. You may not impose any further
194 | restrictions on the recipients' exercise of the rights granted herein.
195 | You are not responsible for enforcing compliance by third parties to
196 | this License.
197 |
198 | 7. If, as a consequence of a court judgment or allegation of patent
199 | infringement or for any other reason (not limited to patent issues),
200 | conditions are imposed on you (whether by court order, agreement or
201 | otherwise) that contradict the conditions of this License, they do not
202 | excuse you from the conditions of this License. If you cannot
203 | distribute so as to satisfy simultaneously your obligations under this
204 | License and any other pertinent obligations, then as a consequence you
205 | may not distribute the Program at all. For example, if a patent
206 | license would not permit royalty-free redistribution of the Program by
207 | all those who receive copies directly or indirectly through you, then
208 | the only way you could satisfy both it and this License would be to
209 | refrain entirely from distribution of the Program.
210 |
211 | If any portion of this section is held invalid or unenforceable under
212 | any particular circumstance, the balance of the section is intended to
213 | apply and the section as a whole is intended to apply in other
214 | circumstances.
215 |
216 | It is not the purpose of this section to induce you to infringe any
217 | patents or other property right claims or to contest validity of any
218 | such claims; this section has the sole purpose of protecting the
219 | integrity of the free software distribution system, which is
220 | implemented by public license practices. Many people have made
221 | generous contributions to the wide range of software distributed
222 | through that system in reliance on consistent application of that
223 | system; it is up to the author/donor to decide if he or she is willing
224 | to distribute software through any other system and a licensee cannot
225 | impose that choice.
226 |
227 | This section is intended to make thoroughly clear what is believed to
228 | be a consequence of the rest of this License.
229 |
230 | 8. If the distribution and/or use of the Program is restricted in
231 | certain countries either by patents or by copyrighted interfaces, the
232 | original copyright holder who places the Program under this License
233 | may add an explicit geographical distribution limitation excluding
234 | those countries, so that distribution is permitted only in or among
235 | countries not thus excluded. In such case, this License incorporates
236 | the limitation as if written in the body of this License.
237 |
238 | 9. The Free Software Foundation may publish revised and/or new versions
239 | of the General Public License from time to time. Such new versions will
240 | be similar in spirit to the present version, but may differ in detail to
241 | address new problems or concerns.
242 |
243 | Each version is given a distinguishing version number. If the Program
244 | specifies a version number of this License which applies to it and "any
245 | later version", you have the option of following the terms and conditions
246 | either of that version or of any later version published by the Free
247 | Software Foundation. If the Program does not specify a version number of
248 | this License, you may choose any version ever published by the Free Software
249 | Foundation.
250 |
251 | 10. If you wish to incorporate parts of the Program into other free
252 | programs whose distribution conditions are different, write to the author
253 | to ask for permission. For software which is copyrighted by the Free
254 | Software Foundation, write to the Free Software Foundation; we sometimes
255 | make exceptions for this. Our decision will be guided by the two goals
256 | of preserving the free status of all derivatives of our free software and
257 | of promoting the sharing and reuse of software generally.
258 |
259 | NO WARRANTY
260 |
261 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
262 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
263 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
264 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
265 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
266 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
267 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
268 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
269 | REPAIR OR CORRECTION.
270 |
271 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
272 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
273 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
274 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
275 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
276 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
277 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
278 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
279 | POSSIBILITY OF SUCH DAMAGES.
280 |
--------------------------------------------------------------------------------
/licenses/MIT-LICENSE.txt:
--------------------------------------------------------------------------------
1 | Copyright (C) 2001, 2011 Matteo Bicocchi, Open Lab srl
2 |
3 | Permission is hereby granted, free of charge, to any person
4 | obtaining a copy of this software and associated documentation
5 | files (the "Software"), to deal in the Software without
6 | restriction, including without limitation the rights to use,
7 | copy, modify, merge, publish, distribute, sublicense, and/or sell
8 | copies of the Software, and to permit persons to whom the
9 | Software is furnished to do so, subject to the following
10 | conditions:
11 |
12 | The above copyright notice and this permission notice shall be
13 | included in all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 | OTHER DEALINGS IN THE SOFTWARE.
23 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "jquery.mb.miniaudioplayer",
3 | "title": "jquery.mb.miniAudioPlayer",
4 | "description": "This plugin let you add a minimal full featured player that takes advantage of the new HTML5 AUDIO tag with a flash fallback for browsers that don't support it. It is built on the jPlayer library",
5 | "keywords": [
6 | "jquery-plugin",
7 | "audio",
8 | "HTML5",
9 | "player",
10 | "jPlayer"
11 | ],
12 | "version": "1.8.7",
13 | "author": "Pupunzi