Skip to content

Commit

Permalink
moved the license to a separate files
Browse files Browse the repository at this point in the history
  • Loading branch information
louisameline committed May 21, 2016
1 parent 0d75400 commit 9e6c091
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 41 deletions.
22 changes: 22 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
The MIT License (MIT)

Copyright (c) Caleb Jacob and Louis Ameline

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.

8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Default ccs + js files = 9Kb gzipped.
A reminder of options/methods lies below. For detailed documentation, visit http://iamceege.github.io/tooltipster/

Standard options
-------------------------
----------------

animation
animationDuration
Expand Down Expand Up @@ -43,7 +43,7 @@ updateAnimation
zIndex

Other options
-------------------------
-------------

(these are available when you use sideTip, the default plugin)

Expand All @@ -56,7 +56,7 @@ minWidth
side

Instance methods
-------------------------
----------------

close([callback])
content([myNewContent])
Expand All @@ -73,7 +73,7 @@ reposition()
status()

Global methods
-------------------------
--------------

instances([selector || element])
instancesLatest()
Expand Down
15 changes: 3 additions & 12 deletions dist/js/tooltipster.bundle.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,9 @@
/**
* http://iamceege.github.io/tooltipster/
*
* tooltipster http://iamceege.github.io/tooltipster/
* A rockin' custom tooltip jQuery plugin
* Developed by Caleb Jacob and Louis Ameline under the MIT license
* http://opensource.org/licenses/MIT
*
* 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.
* Developed by Caleb Jacob and Louis Ameline
* MIT license
*/

;(function($) {

var globalCore = function() {},
Expand Down
15 changes: 3 additions & 12 deletions dist/js/tooltipster.core.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,9 @@
/**
* http://iamceege.github.io/tooltipster/
*
* tooltipster http://iamceege.github.io/tooltipster/
* A rockin' custom tooltip jQuery plugin
* Developed by Caleb Jacob and Louis Ameline under the MIT license
* http://opensource.org/licenses/MIT
*
* 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.
* Developed by Caleb Jacob and Louis Ameline
* MIT license
*/

;(function($) {

var globalCore = function() {},
Expand Down
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ <h3 id="theming">4. Styling your tooltips</h3>

<h3 id="further">5. Using HTML tags inside your tooltips</h3>

<p>Tooltipster allows you to use any HTML markup inside your tooltips. It means that you can insert things like images and text formatting tags. The preferred method to achieve this is to provide your content as an HTML element (which may be jQuery-wrapped) in the options. Example:</p>
<p>Tooltipster allows you to use any HTML markup inside your tooltips. It means that you can insert things like images and text formatting tags. The preferred method to achieve this is to use an HTML element as content. Example:</p>

<pre class="prettyprint">
&lt;head&#62;
Expand All @@ -222,6 +222,7 @@ <h3 id="further">5. Using HTML tags inside your tooltips</h3>
$(document).ready(function() {

$('#origin').tooltipster({
// we detach the content from the page and give it to Tooltipster
content: $('#tooltip_content').detach()
});
});
Expand Down
15 changes: 3 additions & 12 deletions src/js/core.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,9 @@
/**
* http://iamceege.github.io/tooltipster/
*
* tooltipster http://iamceege.github.io/tooltipster/
* A rockin' custom tooltip jQuery plugin
* Developed by Caleb Jacob and Louis Ameline under the MIT license
* http://opensource.org/licenses/MIT
*
* 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.
* Developed by Caleb Jacob and Louis Ameline
* MIT license
*/

;(function($) {

var globalCore = function() {},
Expand Down

0 comments on commit 9e6c091

Please sign in to comment.