Difference between revisions of "MediaWiki:Gadget-calculator-drugDosage.js"
From WikiAnesthesia
Chris Rishel (talk | contribs) |
Chris Rishel (talk | contribs) |
||
Line 1: | Line 1: | ||
( function() { | ( function() { | ||
var moduleId = 'drugDosages'; | var moduleId = 'drugDosages'; | ||
Line 46: | Line 45: | ||
] | ] | ||
}, | |||
nonOpioidAnalgesics: { | |||
name: 'Non-opioid analgesics', | |||
calculations: [ | |||
'acetaminophen' | |||
] | |||
}, | }, | ||
antibiotics: { | antibiotics: { | ||
Line 51: | Line 56: | ||
calculations: [ | calculations: [ | ||
'cefazolin' | 'cefazolin' | ||
] | |||
}, | |||
other: { | |||
name: 'Other', | |||
calculations: [ | |||
'dantrolene' | |||
] | ] | ||
Revision as of 14:37, 21 August 2021
( function() { var moduleId = 'drugDosages'; mw.calculators.addDrugCalculators( moduleId, { sedativeHypnotics: { name: 'Sedatives and hypnotics', calculations: [ 'propofol', 'etomidate', 'ketamine', 'midazolam', 'dexmedetomidine' ] }, opioids: { name: 'Opioids', calculations: [ 'remifentanil', 'sufentanil' ] }, neuromuscularBlockers: { name: 'Neuromuscular blockade', calculations: [ 'rocuronium', 'vecuronium', 'succinylcholine', 'sugammadex', 'neostigmine', ] }, cardiovascularAgonists: { name: 'Cardiovascular agonists', calculations: [ 'phenylephrine', 'ephedrine' ] }, ponv: { name: 'Postoperative nausea and vomiting', calculations: [ 'dexamethasone', 'ondansetron' ] }, nonOpioidAnalgesics: { name: 'Non-opioid analgesics', calculations: [ 'acetaminophen' ] }, antibiotics: { name: 'Antibiotics', calculations: [ 'cefazolin' ] }, other: { name: 'Other', calculations: [ 'dantrolene' ] } } ); }() );