undo3d
Version:
Undo3D helps you build free-roaming 3D web apps where thousands of users can collaborate creatively in real time. Expect the first public beta mid-2019, and the first production release mid-2020.
13 lines (9 loc) • 291 B
JavaScript
//// Base < Ui < Zone < Popup
//// A dialog or alert. Temporarily prevents UI interactions.
import Zone from '../ui/zone.mjs'
export default class Popup extends Zone {
}
//// Static properties.
Object.defineProperties(Popup, {
tree: { value:Zone.tree+' < Popup', enumerable:true }
})