3
0
mirror of https://github.com/cytodev/LightDMMock.git synced 2024-11-24 23:19:49 +01:00

Merge pull request #1 from FallingSnow/patch-1

Add module exports
This commit is contained in:
Roel Walraven 2017-02-24 10:25:32 +01:00 committed by GitHub
commit 2f87645e61

View File

@ -570,3 +570,7 @@ LightDMMock.watch('timed_login_user', function() {
LightDMMock.watch('timed_login_delay', function() { LightDMMock.watch('timed_login_delay', function() {
window.deprecationNotifier("property", "timed_login_delay", "lightdm.autologin_timeout"); window.deprecationNotifier("property", "timed_login_delay", "lightdm.autologin_timeout");
}); });
if (module) {
module.exports = LightDMMock;
}