File: gjsplugin.js

package info (click to toggle)
glade 3.40.0-6
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 23,336 kB
  • sloc: ansic: 75,618; xml: 5,397; sh: 48; makefile: 26; python: 13; javascript: 10
file content (13 lines) | stat: -rw-r--r-- 236 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/gjs

const GObject = imports.gi.GObject;
const Gtk     = imports.gi.Gtk;

var MyJSGrid = GObject.registerClass({
    GTypeName: 'MyJSGrid',
}, class MyJSGrid extends Gtk.Grid {
    _init() {
        super._init();
    }
});