js: Port to modules

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1499>
This commit is contained in:
Evan Welsh
2023-07-10 02:53:00 -07:00
committed by Florian Müllner
parent d9198317ae
commit a751e213f6
162 changed files with 2183 additions and 2336 deletions

View File

@ -1,11 +1,10 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
/* exported GrabHelper */
const Clutter = imports.gi.Clutter;
const St = imports.gi.St;
import Clutter from 'gi://Clutter';
import St from 'gi://St';
const Main = imports.ui.main;
const Params = imports.misc.params;
import * as Main from './main.js';
import * as Params from '../misc/params.js';
/**
* GrabHelper:
@ -18,7 +17,7 @@ const Params = imports.misc.params;
* after you call ungrab(), but instead pass an 'onUngrab' callback when you
* call grab().
*/
class GrabHelper {
export class GrabHelper {
/**
* @param {Clutter.Actor} owner the actor that owns the GrabHelper
* @param {*} params optional parameters to pass to Main.pushModal()
@ -293,4 +292,4 @@ class GrabHelper {
return Clutter.EVENT_STOP;
}
};
}