Updated Readme
This commit is contained in:
parent
424d4993ae
commit
48ee0bde52
14
README.md
14
README.md
@ -4,7 +4,7 @@ A Minimal, Modular Javascript library for Modern browsers.
|
|||||||
|
|
||||||
Aims to be fast, small, and easily split into individual modules.
|
Aims to be fast, small, and easily split into individual modules.
|
||||||
|
|
||||||
Browser support: IE9+, Latest versions of Firefox, Chrome, Safari, Opera
|
Browser support: IE8+, Latest versions of Firefox, Chrome, Safari, Opera
|
||||||
|
|
||||||
## Basic Use: ##
|
## Basic Use: ##
|
||||||
|
|
||||||
@ -14,17 +14,6 @@ Browser support: IE9+, Latest versions of Firefox, Chrome, Safari, Opera
|
|||||||
|
|
||||||
## Modules: ##
|
## Modules: ##
|
||||||
|
|
||||||
**Support**: Provides browser feature detection
|
|
||||||
|
|
||||||
properties:
|
|
||||||
|
|
||||||
* attachEvent:
|
|
||||||
True if `attachEvent` is supported
|
|
||||||
* addEventListener:
|
|
||||||
True if `addEventListener` is supported
|
|
||||||
* querySelector:
|
|
||||||
True if `querySelectorAll` is supported
|
|
||||||
|
|
||||||
**Ajax**: simple, jQuery-like ajax functions
|
**Ajax**: simple, jQuery-like ajax functions
|
||||||
|
|
||||||
functions:
|
functions:
|
||||||
@ -71,7 +60,6 @@ Browser support: IE9+, Latest versions of Firefox, Chrome, Safari, Opera
|
|||||||
|
|
||||||
|
|
||||||
**Event**: wrapper for applying events to DOM objects
|
**Event**: wrapper for applying events to DOM objects
|
||||||
*Depends on the `Support` module*
|
|
||||||
|
|
||||||
functions:
|
functions:
|
||||||
|
|
||||||
|
2
kis.js
2
kis.js
@ -48,7 +48,7 @@
|
|||||||
var support = {
|
var support = {
|
||||||
attachEvent: typeof window.attachEvent === "function",
|
attachEvent: typeof window.attachEvent === "function",
|
||||||
addEventListener: typeof window.addEventListener === "function",
|
addEventListener: typeof window.addEventListener === "function",
|
||||||
querySelector: typeof document.querySelectorAll === "function"
|
querySelector: typeof document.querySelectorAll === "function",
|
||||||
};
|
};
|
||||||
|
|
||||||
$_.support = support;
|
$_.support = support;
|
||||||
|
Loading…
Reference in New Issue
Block a user