Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/zebra.min.js

Large diffs are not rendered by default.

1,082 changes: 1,017 additions & 65 deletions dist/zebra.src.js

Large diffs are not rendered by default.

524 changes: 524 additions & 0 deletions examples.html

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion src/$.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@

'use strict';

var $;

// we'll use this to keep track of registered event listeners
// eslint-disable-next-line no-unused-vars
const event_listeners = new Map();

// we'll use this when generating random IDs
// eslint-disable-next-line no-unused-vars
// eslint-disable-next-line no-unused-vars, prefer-const
let internal_counter = 0;

// this is the function used internally to create ZebraJS objects using the given arguments
Expand Down Expand Up @@ -169,6 +171,10 @@
// import "addClass.js"
// import "after.js"
// import "animate.js"
// import "fadeIn.js"
// import "fadeOut.js"
// import "slideDown.js"
// import "slideUp.js"
// import "append.js"
// import "appendTo.js"
// import "attr.js"
Expand Down
Loading