mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 22:17:42 +00:00
LibWeb: Split JS wrapper constructors into construct/initialize
This commit is contained in:
parent
06e29fac57
commit
03da70c7d0
31 changed files with 107 additions and 55 deletions
|
@ -35,8 +35,12 @@
|
|||
namespace Web {
|
||||
namespace Bindings {
|
||||
|
||||
MouseEventWrapper::MouseEventWrapper(MouseEvent& event)
|
||||
: EventWrapper(event)
|
||||
MouseEventWrapper::MouseEventWrapper(JS::GlobalObject& global_object, MouseEvent& event)
|
||||
: EventWrapper(global_object, event)
|
||||
{
|
||||
}
|
||||
|
||||
void MouseEventWrapper::initialize(JS::Interpreter&, JS::GlobalObject&)
|
||||
{
|
||||
define_native_property("offsetX", offset_x_getter, nullptr);
|
||||
define_native_property("offsetY", offset_y_getter, nullptr);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue