﻿
(function(jQuery){jQuery.fn.extend({mood:function(o){var opt={};Cuke.apply(opt,o,{data:null,buttonClass:"bm-button right",buttonText:"BM.User.ShareMood",url:null,placeHolder:"Partagez votre humeur du jour"});return this.each(function(){$this=jQuery(this);$this.attr("class","mood-editor");$this.append('<textarea class="mood-input" ></textarea>');jQuery("textarea",$this).val(opt.placeHolder);var bar=document.createElement("div");var $bar=jQuery(bar).attr("class","mood-bar");$this.wrap('<div class="mood"></div>');$this.parent().append($bar);var el=document.createElement("button");var $el=jQuery(el);$el.attr("class",opt.buttonClass);$el.html(opt.buttonText);$bar.append($el);var _parseMoodEditorContent=function(content){return content;}
$el.click(function(){$this.parent().after("<div class='bm-bbs-new-mood loader' style='display:none;'></div>");var content=_parseMoodEditorContent($j(".mood-input").val());var data=Cuke.apply({postContent:content},opt.data);jQuery.post(opt.url,data,function(d){jQuery(".bm-bbs-new-mood:first").append(d).fadeIn();jQuery("textarea",$this).val(opt.placeHolder);jQuery(".mood-bar").hide();});return false;});jQuery("textarea",$this).bind("focus",function(){$j(this).val("");$bar.show();});jQuery("textarea",$this).bind("blur",function(){});});}});})(jQuery);
