SHA256
1
0
forked from pool/gnome-shell

Accepting request 526953 from home:xiaoguang_wang:branches:GNOME:Factory

- Fix JS warning, define classes with 'var' instead of 'const'
  (bgo#785084)
  + Update aboutMenu.js
  + Update gnome-shell-domain.patch

OBS-URL: https://build.opensuse.org/request/show/526953
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-shell?expand=0&rev=324
This commit is contained in:
2017-09-18 08:27:45 +00:00
committed by Git OBS Bridge
parent 0598ce145e
commit 81700b6c8d
3 changed files with 10 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ const HostnameIface = '<node> \
</node>';
const HostnameProxy = Gio.DBusProxy.makeProxyWrapper(HostnameIface);
const AboutMenuButton = new Lang.Class({
var AboutMenuButton = new Lang.Class({
Name: 'AboutMenuButton',
Extends: PanelMenu.Button,
_init: function() {

View File

@@ -46,7 +46,7 @@ Index: gnome-shell-3.26.0/js/gdm/domain.js
+ ERR : 5
+};
+
+const DomainMenuButton = new Lang.Class({
+var DomainMenuButton = new Lang.Class({
+ Name: 'DomainMenuButton',
+
+ _init: function () {

View File

@@ -1,3 +1,11 @@
-------------------------------------------------------------------
Mon Sep 18 07:31:56 UTC 2017 - xwang@suse.com
- Fix JS warning, define classes with 'var' instead of 'const'
(bgo#785084)
+ Update aboutMenu.js
+ Update gnome-shell-domain.patch
-------------------------------------------------------------------
Wed Sep 13 02:39:59 UTC 2017 - xwang@suse.com