Skip to content

Instantly share code, notes, and snippets.

@sinamf
sinamf / patientInfoWidget.js
Created May 5, 2025 19:38
testing the patient view js for webex
// patientInfoWidget.js
(function() {
// Create UI elements when script loads
function createUI() {
const container = document.createElement('div');
container.style.padding = '15px';
container.style.fontFamily = "'Segoe UI', Tahoma, Geneva, Verdana, sans-serif";
const title = document.createElement('h2');
title.textContent = 'Patient Information';
def hello(name):
print(name)