(function(CWAEMBED, undefined ) {
var $ = null;
var host = 'https://rockanimal.careplans.vet/cwa';
function init() {
var scriptTag = document.createElement('script');
scriptTag.src = host+'/assets/application.js';
scriptTag.setAttribute("type", "text/javascript");
scriptTag.onload = init2;
scriptTag.onreadystatechange = init2;
document.getElementById('cwaEmbedDiv').appendChild(scriptTag);
}
function init2() {
$ = jQuery.noConflict(true); // TODO: think how to offer $ to views...
cwa$ = $;
var vcpCss =$('');
var brandedCss =$('');
$('head').append(vcpCss).append(brandedCss);
$('#cwaEmbedDiv').load(host+'/embed/login');
}
init(); }(window.CWAEMBED = window.CWAEMBED || {} ));