Merge "fix issue : GSO-126"
authorSeshu-Kumar-M <seshu.kumar.m@huawei.com>
Tue, 20 Dec 2016 07:52:26 +0000 (15:52 +0800)
committerSeshu-Kumar-M <seshu.kumar.m@huawei.com>
Tue, 20 Dec 2016 07:53:47 +0000 (15:53 +0800)
Change-Id: I954d09a8777604d057da45ee306a66b917f2f377
Signed-off-by: Seshu-Kumar-M <seshu.kumar.m@huawei.com>
openo-portal/portal-common/src/main/webapp/common/thirdparty/bootstrap-growl/jquery.bootstrap-growl.min.js [new file with mode: 0644]

diff --git a/openo-portal/portal-common/src/main/webapp/common/thirdparty/bootstrap-growl/jquery.bootstrap-growl.min.js b/openo-portal/portal-common/src/main/webapp/common/thirdparty/bootstrap-growl/jquery.bootstrap-growl.min.js
new file mode 100644 (file)
index 0000000..67837e5
--- /dev/null
@@ -0,0 +1 @@
+(function(){var c;c=jQuery;c.bootstrapGrowl=function(f,a){var b,e,d;a=c.extend({},c.bootstrapGrowl.default_options,a);b=c("<div>");b.attr("class","bootstrap-growl alert");a.type&&b.addClass("alert-"+a.type);a.allow_dismiss&&(b.addClass("alert-dismissible"),b.append('<button class="close" data-dismiss="alert" type="button"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>'));b.append(f);a.top_offset&&(a.offset={from:"top",amount:a.top_offset});d=a.offset.amount;c(".bootstrap-growl").each(function(){return d= Math.max(d,parseInt(c(this).css(a.offset.from))+c(this).outerHeight()+a.stackup_spacing)});e={position:"body"===a.ele?"fixed":"absolute",margin:0,"z-index":"9999",display:"none"};e[a.offset.from]=d+"px";b.css(e);"auto"!==a.width&&b.css("width",a.width+"px");c(a.ele).append(b);switch(a.align){case "center":b.css({left:"50%","margin-left":"-"+b.outerWidth()/2+"px"});break;case "left":b.css("left","20px");break;default:b.css("right","20px")}b.fadeIn();0<a.delay&&b.delay(a.delay).fadeOut(function(){return c(this).alert("close")}); return b};c.bootstrapGrowl.default_options={ele:"body",type:"info",offset:{from:"top",amount:20},align:"right",width:250,delay:4E3,allow_dismiss:!0,stackup_spacing:10}}).call(this);