2008-10-31 18:09:20 +00:00
|
|
|
/* -*- mode: js2; js2-basic-offset: 4; -*- */
|
|
|
|
|
2008-10-31 04:22:44 +00:00
|
|
|
const Shell = imports.gi.Shell;
|
|
|
|
const Clutter = imports.gi.Clutter;
|
|
|
|
|
2008-10-31 18:09:20 +00:00
|
|
|
const Panel = imports.ui.panel;
|
|
|
|
|
|
|
|
let panel = null;
|
|
|
|
|
2008-10-31 04:22:44 +00:00
|
|
|
function start() {
|
2008-10-31 18:09:20 +00:00
|
|
|
panel = new Panel.Panel();
|
2008-10-31 04:22:44 +00:00
|
|
|
}
|