88
| <![CDATA[<script>
window.fbAsyncInit = function() {
FB.init({
appId : '',
status : true,
cookie : true,
xfbml : true
});
};
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
</script>]]>
|
139
| <![CDATA[<script>
window.onload = function(){
//Inicio PizzaPaises
var r = Raphael('PizzaSolicitacoes', 350, 500);
pie = r.piechart(150, 150, 120,
[0,0],
{ legend: ["%%.% Respondidas no prazo - 0","%%.% Respondidas fora do prazo - 0"],
legendpos: "south",
});
pie.hover(function () {
this.sector.stop();
this.sector.scale(1.1, 1.1, this.cx, this.cy);
if (this.label) {
this.label[0].stop();
this.label[0].attr({ r: 7.5 });
this.label[1].attr({ "font-weight": 'bold' });
}
}, function () {
this.sector.animate({ transform: 's1 1 ' + this.cx + ' ' + this.cy }, 500, "bounce");
if (this.label) {
this.label[0].animate({ r: 5 }, 500, "bounce");
this.label[1].attr({ "font-weight": 400 });
}
});
}
// Fim PizzaPaises
</script>]]>
|