Skip to content

Commit da46d23

Browse files
author
Eric Hynds
committed
adding minified version
1 parent bcca48d commit da46d23

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

index.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<style type="text/css">form input { display:block; width:250px; margin-bottom:5px }</style>
1010
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js" type="text/javascript"></script>
1111
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1/jquery-ui.js" type="text/javascript"></script>
12-
<script src="src/jquery.notify.js" type="text/javascript"></script>
12+
<script src="src/jquery.notify.min.js" type="text/javascript"></script>
1313

1414
<script type="text/javascript">
1515
function create( template, vars, opts ){

src/jquery.notify.min.js

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
/*
2+
* jQuery Notify UI Widget 1.2.1
3+
* Copyright (c) 2010 Eric Hynds
4+
*
5+
* http://www.erichynds.com/jquery/a-jquery-ui-growl-ubuntu-notification-widget/
6+
*
7+
* Depends:
8+
* - jQuery 1.4
9+
* - jQuery UI 1.8 (core, widget factory)
10+
*
11+
* Dual licensed under the MIT and GPL licenses:
12+
* http://www.opensource.org/licenses/mit-license.php
13+
* http://www.gnu.org/licenses/gpl.html
14+
*
15+
*/
16+
(function(d){d.widget("ui.notify",{options:{speed:500,expires:5E3,stack:"below"},_create:function(){var a=this;this.templates={};this.keys=[];this.element.addClass("ui-notify").children().addClass("ui-notify-message").each(function(b){b=this.id||b;a.keys.push(b);a.templates[b]=d(this).removeAttr("id").wrap("<div></div>").parent().html()}).end().empty()},create:function(a,b,c){if(typeof a==="object"){c=b;b=a;a=null}return(new d.ui.notify.instance(this))._create(b,d.extend({},this.options,c),this.templates[a||
17+
this.keys[0]])}});d.extend(d.ui.notify,{instance:function(a){this.parent=a;this.isOpen=false}});d.extend(d.ui.notify.instance.prototype,{_create:function(a,b,c){this.options=b;var e=this;c=c.replace(/#\{(.*?)\}/g,function(g,h){return h in a?a[h]:""});c=this.element=d(c);var f=c.find("a.ui-notify-close");if(this._trigger("beforeopen")!==false){typeof this.options.click==="function"&&c.addClass("ui-notify-click").bind("click",function(g){e._trigger("click",g,e)});if(f.length&&b.expires)f.remove();else f.length&&
18+
f.bind("click",function(){e.close();return false});this.open();typeof b.expires==="number"&&window.setTimeout(function(){e.close()},b.expires);return this}},close:function(){var a=this,b=this.options.speed;this.isOpen=false;this.element.fadeTo(b,0).slideUp(b,function(){a._trigger("close")});return this},open:function(){if(this.isOpen)return this;var a=this;this.isOpen=true;this.element[this.options.stack==="above"?"prependTo":"appendTo"](this.parent.element).css({display:"none",opacity:""}).fadeIn(this.options.speed,
19+
function(){a._trigger("open")});return this},widget:function(){return this.element},_trigger:function(a,b,c){return this.parent._trigger.call(this,a,b,c)}})})(jQuery);

0 commit comments

Comments
 (0)