/*! jQuery.flowchart.js v1.0.0 | jquery.flowchart.min.js | jQuery plugin for flowchart.js. | MIT License | By: Pandao | https://github.com/pandao/jquery.flowchart.js | 2015-02-24 */ "use strict";"undefined"!=typeof jQuery&&!function(e){e.fn.flowChart=function(t){t=t||{};var l={x:0,y:0,"line-width":2,"line-length":50,"text-margin":10,"font-size":14,"font-color":"black","line-color":"black","element-color":"black",fill:"white","yes-text":"yes","no-text":"no","arrow-end":"block",symbols:{start:{"font-color":"black","element-color":"black",fill:"white"},end:{"class":"end-element"}},flowstate:{past:{fill:"#CCCCCC","font-size":12},current:{fill:"black","font-color":"white","font-weight":"bold"},future:{fill:"white"},request:{fill:"blue"},invalid:{fill:"#444444"},approved:{fill:"#58C4A3","font-size":12,"yes-text":"APPROVED","no-text":"n/a"},rejected:{fill:"#C45879","font-size":12,"yes-text":"n/a","no-text":"REJECTED"}}};return this.each(function(){var n=e(this),o=flowchart.parse(n.text()),i=e.extend(!0,l,t);n.html(""),o.drawSVG(this,i)})}}(jQuery);