mirror of
https://github.com/reddit-archive/reddit.git
synced 2026-01-28 16:28:01 -05:00
Proxy the new stylesheet properties to DefaultSR.
This commit is contained in:
committed by
Max Goodman
parent
2a9b140cc7
commit
ae534d7f31
@@ -1181,6 +1181,18 @@ class DefaultSR(_DefaultSR):
|
||||
def stylesheet_contents(self):
|
||||
return self._base.stylesheet_contents if self._base else ""
|
||||
|
||||
@property
|
||||
def stylesheet_contents_secure(self):
|
||||
return self._base.stylesheet_contents_secure if self._base else ""
|
||||
|
||||
@property
|
||||
def stylesheet_url_http(self):
|
||||
return self._base.stylesheet_url_http if self._base else ""
|
||||
|
||||
@property
|
||||
def stylesheet_url_https(self):
|
||||
return self._base.stylesheet_url_https if self._base else ""
|
||||
|
||||
@property
|
||||
def stylesheet_hash(self):
|
||||
return self._base.stylesheet_hash if self._base else ""
|
||||
|
||||
Reference in New Issue
Block a user