little things

This commit is contained in:
Adam D. Ruppe 2019-12-06 10:31:50 -05:00
parent 832367990c
commit 4cf16e9248
3 changed files with 7 additions and 4 deletions

3
dom.d
View File

@ -1,4 +1,5 @@
// FIXME: add classList
// FIXME: xml namespace support???
// FIXME: add matchesSelector - standard name is `matches`. also `closest` walks up to find the parent that matches
// FIXME: https://developer.mozilla.org/en-US/docs/Web/API/Element/insertAdjacentHTML
// FIXME: appendChild should not fail if the thing already has a parent; it should just automatically remove it per standard.
@ -3544,7 +3545,7 @@ struct ElementCollection {
return text;
}
/// Forward method calls to each individual element of the collection
/// Forward method calls to each individual [Element|element] of the collection
/// returns this so it can be chained.
ElementCollection opDispatch(string name, T...)(T t) {
foreach(e; elements) {

View File

@ -5193,8 +5193,7 @@ class Checkbox : MouseActivatedWidget {
event.dispatch();
redraw();
};
}
}
/// Adds empty space to a layout.
@ -6900,7 +6899,7 @@ class ObjectInspectionWindowImpl(T) : ObjectInspectionWindow {
foreach(k, v; updateMemberDelegates)
v();
}
};
}
/++
Creates a dialog based on a data structure.

View File

@ -62,6 +62,9 @@
+/
module arsd.terminal;
// FIXME: needs to support VT output on Windows too in certain situations
// FIXME: paste on Windows and alt+NNNN codes in getline function
/++
$(H3 Get Line)