Skip to content

Commit b822484

Browse files
author
jacook
committed
network widget fix and dashboard.js to jquery 1.7+
1 parent 2032f88 commit b822484

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

genesis/plugins/network/widget.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def handle(self, event, params, cfg, vars=None):
4242

4343
def get_config_dialog(self):
4444
be = self.app.get_backend(INetworkConfig)
45-
dlg = self.app.inflate('network-arch:widget-config')
45+
dlg = self.app.inflate('network:widget-config')
4646
for i in be.interfaces:
4747
dlg.append('list', UI.Radio(
4848
value=i,

genesis/plugins/sysmon/files/dashboard.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
$('.dashboard').live('sortstart', function () {
1+
$(document).on('sortstart', '.dashboard', function () {
22
$('#trash').fadeTo(500, 1);
33
});
44

5-
$('.dashboard').live('sortstop', function () {
5+
$(document).on('sortstop', '.dashboard', function () {
66
$('#trash').fadeTo(500, 0).empty().text('Drop here to remove widget');
77
$('#save-query').show();
88
$('#save-query').animate({'height':'35px'}, 1000);

packaging/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ optdepends=('python2-psutil: Task Manager plugin'
1515
provides=('genesis')
1616
conflicts=('genesis-git')
1717
source=("$pkgname-$pkgver.tar.gz"::"http://uspx.ark-os.org/$pkgname-$pkgver.tar.gz")
18-
md5sums=('a23004008838c2c266cd75076e28f63f')
18+
md5sums=('06dc2bdcb40a14f0a68bcac8f5071232')
1919
backup=('etc/genesis/genesis.conf' 'etc/genesis/users/admin.conf')
2020

2121
build() {

0 commit comments

Comments
 (0)