Updated README and sorting out folder case issue.

This commit is contained in:
photonstorm
2013-10-23 13:30:23 +01:00
parent f1f42e4d41
commit 4a51ac4671
333 changed files with 2058 additions and 26 deletions
@@ -0,0 +1,18 @@
/**
* jQuery plugin for Sunlight http://sunlightjs.com/
*
* by Tommy Montgomery http://tmont.com/
* licensed under WTFPL http://sam.zoy.org/wtfpl/
*/
(function($, window){
$.fn.sunlight = function(options) {
var highlighter = new window.Sunlight.Highlighter(options);
this.each(function() {
highlighter.highlightNode(this);
});
return this;
};
}(jQuery, this));