mirror of
https://github.com/codex-storage/deluge.git
synced 2025-02-20 07:08:30 +00:00
fix semi-colon in the login window
change themes back to a static.File resource
This commit is contained in:
parent
427cc63803
commit
134bed774c
@ -101,7 +101,7 @@ Copyright:
|
|||||||
iconCls: 'x-deluge-icon-warning'
|
iconCls: 'x-deluge-icon-warning'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}.bindWithEvent(this);
|
}.bindWithEvent(this)
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -226,7 +226,7 @@ class TopLevel(resource.Resource):
|
|||||||
self.putChild("json", JSON())
|
self.putChild("json", JSON())
|
||||||
self.putChild("upload", Upload())
|
self.putChild("upload", Upload())
|
||||||
self.putChild("render", Render())
|
self.putChild("render", Render())
|
||||||
self.putChild("themes", LookupResource("Themes", rpath("themes")))
|
self.putChild("themes", static.File(rpath("themes")))
|
||||||
self.putChild("tracker", Tracker())
|
self.putChild("tracker", Tracker())
|
||||||
|
|
||||||
def getChild(self, path, request):
|
def getChild(self, path, request):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user