mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-31 16:31:58 +02:00
14 lines
282 B
JavaScript
14 lines
282 B
JavaScript
const { GObject, Gtk } = imports.gi;
|
|
const { PlayerRemote } = imports.clapper_src.playerRemote;
|
|
|
|
var WidgetRemote = GObject.registerClass(
|
|
class ClapperWidgetRemote extends Gtk.Grid
|
|
{
|
|
_init(opts)
|
|
{
|
|
super._init();
|
|
|
|
this.player = new PlayerRemote();
|
|
}
|
|
});
|