From 220205d2d753712b22d5acd7063141bf0a100b15 Mon Sep 17 00:00:00 2001 From: Brian Sewell Date: Mon, 14 May 2012 14:50:57 -0400 Subject: [PATCH] Added license --- LICENSE | 21 +++++++++++++++++++++ README.md | 22 ++++++++++------------ 2 files changed, 31 insertions(+), 12 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..19c57a1 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +The MIT License + +Copyright (c) 2012 Brian Sewell. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/README.md b/README.md index 541c722..ceffeb9 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,4 @@ -tablecloth.js -============= - +# tablecloth.js tablecloth.js is a jQuery plugin that helps you easily style HTML tables along with some simple customizations. We've all been there. Either you're redesigning a large site or working on a completely new one... styling tables is typically tedious and time-consuming. If you'd rather spend your valuable time making the other elements of your site pretty, use tablecloth to do the heavy lifting: @@ -11,15 +9,15 @@ $("table").tablecloth(); // With customizations $("table").tablecloth({ -theme: "default", -bordered: true, -condensed: true, -striped: true, -sortable: true, -clean: true, -cleanElements: "th td", -customClass: "my-table" + theme: "default", + bordered: true, + condensed: true, + striped: true, + sortable: true, + clean: true, + cleanElements: "th td", + customClass: "my-table" }); ``` -tablecloth builds off the [Twitter Bootstrap](http://twitter.github.com/bootstrap/). It also includes popular jQuery table manipulation plugins like [tablesorter](http://tablesorter.com/docs/). \ No newline at end of file +tablecloth builds off the [Twitter Bootstrap](http://twitter.github.com/bootstrap/). It also includes popular jQuery table manipulation plugins like [tablesorter](http://tablesorter.com/docs/).