Skip to content
This repository was archived by the owner on Apr 24, 2021. It is now read-only.

Commit 9a899be

Browse files
author
Necati Özal
committed
The dyslexic problem was fixed.
1 parent 8579b48 commit 9a899be

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "QueueJS",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"description": "Queue JS is a simple library which can call your methods in a order you specify.",
55
"main": "queue.js",
66
"authors": [

queue.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
add: function(callback, argArray) {
1212
this.push([
1313
callback,
14-
[].slice.call(1, arguments)
14+
[].slice.call(arguments, 1)
1515
]);
1616
},
1717

1818
put: function(callback, argArray) {
1919
this.splice(this.index, 0, [
2020
callback,
21-
[].slice.call(1, arguments)
21+
[].slice.call(arguments, 1)
2222
]);
2323
},
2424

0 commit comments

Comments
 (0)