Updated Readme

This commit is contained in:
Timothy Warren 2011-07-01 18:18:38 -04:00
parent 424d4993ae
commit 48ee0bde52
2 changed files with 2 additions and 14 deletions

View File

@ -4,7 +4,7 @@ A Minimal, Modular Javascript library for Modern browsers.
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: ##
@ -14,17 +14,6 @@ Browser support: IE9+, Latest versions of Firefox, Chrome, Safari, Opera
## 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
functions:
@ -71,7 +60,6 @@ Browser support: IE9+, Latest versions of Firefox, Chrome, Safari, Opera
**Event**: wrapper for applying events to DOM objects
*Depends on the `Support` module*
functions:

2
kis.js
View File

@ -48,7 +48,7 @@
var support = {
attachEvent: typeof window.attachEvent === "function",
addEventListener: typeof window.addEventListener === "function",
querySelector: typeof document.querySelectorAll === "function"
querySelector: typeof document.querySelectorAll === "function",
};
$_.support = support;