notyfy
notyfy copied to clipboard
Documentation Issue
Hi,
In the included documentation it refers installation similar to this
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
<script type="text/javascript" src="jquery.notyfy.js"></script>
<script type="text/javascript" src="jquery.notyfy.css"></script>
<!-- include a theme -->
<script type="text/javascript" src="themes/default.css"></script>
It should be this:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
<script type="text/javascript" src="jquery.notyfy.js"></script>
<link rel="stylesheet" href="jquery.notyfy.css">
<!-- include a theme -->
<link rel="stylesheet" href="themes/default.css">
Also here:
var notyfy = notyfy({...});
requires better naming to work:
var n = notyfy({...});