forked from sciactive/pnotify
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated docs, jQuery version requirement, and testing page.
- Loading branch information
Showing
3 changed files
with
21 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,24 @@ | ||
<html> | ||
<head> | ||
<title>PNotify Testing</title> | ||
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script> | ||
<script type="text/javascript" src="jquery.pnotify.js"></script> | ||
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.js"></script> | ||
<script type="text/javascript" src="pnotify.core.js"></script> | ||
|
||
<link type="text/css" rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.17/themes/ui-lightness/jquery-ui.css" /> | ||
<link type="text/css" rel="stylesheet" href="includes/bootstrap/css/bootstrap.normal.css" /> | ||
<link type="text/css" rel="stylesheet" href="jquery.pnotify.default.css" /> | ||
</head> | ||
<body> | ||
<link type="text/css" rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.17/themes/ui-lightness/jquery-ui.css" /> | ||
<link type="text/css" rel="stylesheet" href="includes/bootstrap3/css/bootstrap.css" /> | ||
<link type="text/css" rel="stylesheet" href="pnotify.core.css" /> | ||
</head> | ||
<body> | ||
<h2>This is Foo - the home of a sticky note.</h2> | ||
<script> | ||
<script> | ||
$(function(){ | ||
$.pnotify({ | ||
pnotify_title: 'Sticky Notice', | ||
pnotify_text: 'I\'m a sticky notice.', | ||
pnotify_hide: false | ||
new PNotify({ | ||
title: 'Notice', | ||
text: 'I\'m a notice.' | ||
}); | ||
// If this blinky works, then it ran the above function. | ||
$("h2").hide(400).show(400); | ||
}); | ||
</script> | ||
</body> | ||
}); | ||
</script> | ||
</body> | ||
</html> |