gentelella/vendors/eve/e.html
christianesperar 6a6db2ea23 Put dependecy libraries to bower for easy updating
Update also fix some following problem:
- Switcher now working
- Datatable header fix example is now working
- Add missing starrr ratings
- Some mobile responsiveness on table.html page
2016-04-24 22:26:16 +08:00

67 lines
1.6 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<title>Eve Use Case</title>
<script src="eve.js"></script>
<script>
var log = function (text) {
log.log = log.log || [];
log.log.push(text);
};
window.onload = function () {
document.getElementById("res").innerHTML = log.log.join("<br>");
};
</script>
<script>
var f1, f2, f3, f4;
// setting up listeners
eve.on("hit", f1 = function () {
log(" Im hit!");
});
eve.on("hit/face", f2 = function () {
log(" Oh, my face!");
});
eve.on("hit/chest", f3 = function () {
log(" Oh, my chest!");
});
eve.on("hit/*/leg", f4 = function () {
log(" Ouch!");
});
eve.once("hit", function () {
log(" You scoundrel!");
})(-1);
// fire events
log("In your face!");
eve("hit/face");
// Im hit!
// Oh, my face!
log("Take that!");
// You can use “.” or “/” as delimiter
eve("hit.chest.leg");
// Im hit!
// Oh, my chest!
// Ouch!
// Unbinding
log("");
eve.unbind("hit", f3);
log("Take that!");
eve("hit.chest.leg");
// Im hit!
// Ouch!
// Unbinding by wildcard
log("");
eve.unbind("hit/*");
log("In your face!");
eve("hit.face");
// Im hit!
log("Take that!");
eve("hit.chest.leg");
// Im hit!
</script>
<pre id="res"></pre>
</html>