APPROPRIATE USE CRITERIA: PEDIATRIC SUPRACONDYLAR HUMERUS FRACTURES (2014)

INDICATION PROFILE


Fracture Type

info

Vascular Status (Pre-op assessment)

Nerve Injuries

Soft Tissue Envelope

Ipsilateral radius and/or ulna fracture

Degree of Swelling

PROCEDURE RECOMMENDATIONS


 
 
 
 
 
 
 
 
 
 
 
 
 
 
'; frmObj.submit(); } function getResults(showError) { var holders = jQuery('.quickflip'); var timeInterval = 250; var num = 0; var timer; if (resultsOn) clearResults(); for (var f=0;f"+data.treatments[t].agreement_symbol+" "+data.treatments[t].treatment) .addClass(data.treatments[t].class_name) .addClass("ttl") .attr("data-original-title",data.treatments[t].tooltip) .tooltip(); //alert(jNum.html()); if (data.treatments[t].link != "") { jLink.attr("href",data.treatments[t].link).attr("target","_blank"); } else { jLink.attr("href","javascript:void(0)").attr("target","_self"); } jNum.html(data.treatments[t].median_rating); } if (data.treatments.length === 0) { jQuery("#NoTreatments").show(); } else { jQuery("#PrintButton").show(); jQuery("#EmailButton").show(); jQuery("#CopyButton").show(); } copyData= data.quickCopy; //jQuery('.aucTitle').tooltip(); //togglePanels(); resultsOn = true; },"json"); } function copyResults () { if (typeof(navigator.clipboard)=='undefined' || typeof(ClipboardItem) =='undefined') { // console.log('navigator.clipboard'); // var textArea = document.createElement("textarea"); // textArea.value = copyData; // textArea.style.position="fixed"; //avoid scrolling to bottom // document.body.appendChild(textArea); // textArea.focus(); // textArea.select(); // try { // var successful = document.execCommand('copy'); // if (successful) // showNotificationMessage('','results copied',null,null,null,'success'); // } catch (err) { // showNotificationMessage('','unable to copy results',null,null,null,'error'); // } // document.body.removeChild(textArea) var container = document.createElement('div'); container.innerHTML = copyData; // Hide element // [2] container.style.position = 'fixed'; container.style.pointerEvents = 'none'; container.style.opacity = 0; // Detect all style sheets of the page var activeSheets = Array.prototype.slice.call(document.styleSheets) .filter(function (sheet) { return !sheet.disabled }); // Mount the container to the DOM to make `contentWindow` available // [3] document.body.appendChild(container); // Copy to clipboard // [4] window.getSelection().removeAllRanges(); var range = document.createRange(); range.selectNode(container); window.getSelection().addRange(range); // [5.1] document.execCommand('copy'); // [5.2] for (var i = 0; i < activeSheets.length; i++) activeSheets[i].disabled = true; // [5.3] try { var successful = document.execCommand('copy'); if (successful) showNotificationMessage('','results copied',null,null,null,'success'); else showNotificationMessage('','unable to copy results',null,null,null,'error'); } catch (err) { showNotificationMessage('','unable to copy results',null,null,null,'error'); } // [5.4] for (var i = 0; i < activeSheets.length; i++) activeSheets[i].disabled = false; // Remove the container // [6] document.body.removeChild(container); return; } const type = 'text/html'; const blob = new Blob([copyData], { type }); let data = [new ClipboardItem({ [type]: blob })]; navigator.clipboard.write(data).then(function() { showNotificationMessage('','results copied',null,null,null,'success'); }, function(err) { showNotificationMessage('','unable to copy results',null,null,null,'error'); }); } function resetForm() { if (resultsOn) { clearResults(); getResults(false); } } function clearResults() { jQuery("#NoTreatments").hide(); resultsOn = false; //togglePanels(); var jPanel = null; var jResults = null; var jNum = null; for (var t=0;t<14;t++) { jQuery.quickFlip.flip(t); jPanel = jQuery("#treatment"+(t+1)); jResults = jQuery("#results"+(t+1)); jNum = jPanel.next(); jPanel.html("") .attr("title","") .removeClass(); jNum.html(""); } } function togglePanels() { var holders = jQuery('.quickflip'); var timeInterval = 250; var num = 0; var timer; if(holders.length){ timer = setInterval(function(){ if(num >= holders.length) clearInterval(timer); else{ jQuery.quickFlip.flip(num); num++; } },timeInterval) } }