Merge branch 'ios-candidate' of https://github.com/Ranchero-Software/NetNewsWire into ios-candidate
This commit is contained in:
commit
093c91d792
|
@ -180,9 +180,9 @@ class WebViewController: UIViewController {
|
||||||
}
|
}
|
||||||
|
|
||||||
func fullReload() {
|
func fullReload() {
|
||||||
if let offset = webView?.scrollView.contentOffset.y {
|
webView?.evaluateJavaScript("window.scrollY") { (scrollY, _) in
|
||||||
restoreOffset = Int(offset)
|
self.restoreOffset = scrollY as! Int
|
||||||
webView?.reload()
|
self.reloadHTML()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -436,7 +436,9 @@ private extension WebViewController {
|
||||||
// play on the iPad where we aren't constantly pushing and popping this controller.
|
// play on the iPad where we aren't constantly pushing and popping this controller.
|
||||||
if (renderingTracker > 10) {
|
if (renderingTracker > 10) {
|
||||||
reloadHTML()
|
reloadHTML()
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
renderingTracker += 1
|
renderingTracker += 1
|
||||||
|
|
||||||
let style = ArticleStylesManager.shared.currentStyle
|
let style = ArticleStylesManager.shared.currentStyle
|
||||||
|
|
|
@ -1167,7 +1167,7 @@ private extension MasterFeedViewController {
|
||||||
feed.rename(to: name) { result in
|
feed.rename(to: name) { result in
|
||||||
switch result {
|
switch result {
|
||||||
case .success:
|
case .success:
|
||||||
self?.reloadNode(node)
|
break
|
||||||
case .failure(let error):
|
case .failure(let error):
|
||||||
self?.presentError(error)
|
self?.presentError(error)
|
||||||
}
|
}
|
||||||
|
@ -1176,7 +1176,7 @@ private extension MasterFeedViewController {
|
||||||
folder.rename(to: name) { result in
|
folder.rename(to: name) { result in
|
||||||
switch result {
|
switch result {
|
||||||
case .success:
|
case .success:
|
||||||
self?.reloadNode(node)
|
break
|
||||||
case .failure(let error):
|
case .failure(let error):
|
||||||
self?.presentError(error)
|
self?.presentError(error)
|
||||||
}
|
}
|
||||||
|
|
|
@ -199,13 +199,11 @@ sub {
|
||||||
width: 100% !important;
|
width: 100% !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 420px) {
|
blockquote {
|
||||||
blockquote {
|
|
||||||
margin-inline-start: 0;
|
margin-inline-start: 0;
|
||||||
margin-inline-end: 0;
|
margin-inline-end: 0;
|
||||||
padding-left: 15px;
|
padding-left: 15px;
|
||||||
border-left: 3px solid var(--secondary-accent-color);
|
border-left: 3px solid var(--secondary-accent-color);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Feed Specific */
|
/* Feed Specific */
|
||||||
|
|
|
@ -51,6 +51,7 @@ private extension InteractiveNavigationController {
|
||||||
navigationAppearance.titleTextAttributes = [.foregroundColor: UIColor.label]
|
navigationAppearance.titleTextAttributes = [.foregroundColor: UIColor.label]
|
||||||
navigationAppearance.largeTitleTextAttributes = [.foregroundColor: UIColor.label]
|
navigationAppearance.largeTitleTextAttributes = [.foregroundColor: UIColor.label]
|
||||||
navigationBar.standardAppearance = navigationAppearance
|
navigationBar.standardAppearance = navigationAppearance
|
||||||
|
navigationBar.scrollEdgeAppearance = navigationAppearance
|
||||||
navigationBar.tintColor = AppAssets.primaryAccentColor
|
navigationBar.tintColor = AppAssets.primaryAccentColor
|
||||||
|
|
||||||
let toolbarAppearance = UIToolbarAppearance()
|
let toolbarAppearance = UIToolbarAppearance()
|
||||||
|
|
Loading…
Reference in New Issue