MCPcopy Create free account
hub / github.com/MicrosoftEdge/WebView2Browser / createDateContainer

Function createDateContainer

wvbrowser_ui/content_ui/history.js:144–154  ·  view source on GitHub ↗
(id, date)

Source from the content-addressed store, hash-verified

142}
143
144function createDateContainer(id, date) {
145 let dateContainer = document.createElement('div');
146 dateContainer.id = id;
147
148 let dateLabel = document.createElement('h3');
149 dateLabel.className = 'header-date';
150 dateLabel.textContent = dateStringFormat.format(date);
151 dateContainer.append(dateLabel);
152
153 return dateContainer;
154}
155
156function loadItems(items) {
157 let dateContainer;

Callers 1

loadItemsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected