Skip to content

Commit a9f084b

Browse files
goderbauerdevoncarew
authored andcommitted
Fix iOS scroll physics (#1950)
* Fix iOS scroll physics * update changelog and bump version
1 parent 75c571c commit a9f084b

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.28.3+1
2+
* Fix scroll physics and behavior for Safari on iOS.
3+
14
## 0.28.3
25
* Support a new `{@youtube}` directive in documentation comments to embed
36
YouTube videos.
@@ -137,7 +140,7 @@
137140
## 0.22.0
138141
* Documentation updates. (#1760)
139142
* Fix incompatibility with head analyzer (endsWith exception). (#1768)
140-
* Added the ability to run external tools on a section of documentation and
143+
* Added the ability to run external tools on a section of documentation and
141144
replace it with the output of the tool.
142145

143146
## 0.21.1

dartdoc_options.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
dartdoc:
22
linkToSource:
33
root: '.'
4-
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.28.3/%f%#L%l%'
4+
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.28.3+1/%f%#L%l%'

lib/resources/styles.css

+1-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ body {
2828
body {
2929
display: flex;
3030
flex-direction: column;
31-
min-height: 100vh;
31+
-webkit-overflow-scrolling: touch;
3232
}
3333

3434
header {
@@ -88,7 +88,6 @@ main {
8888
::-webkit-scrollbar-thumb{ background-color: #CCC; }
8989
::-webkit-scrollbar-thumb:hover{ background-color: #CCC; }
9090
::-webkit-scrollbar{ width: 4px; }
91-
::-webkit-overflow-scrolling: touch;
9291

9392
.main-content::-webkit-scrollbar{ width: 8px; }
9493

lib/src/version.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// Generated code. Do not modify.
2-
const packageVersion = '0.28.3';
2+
const packageVersion = '0.28.3+1';

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dartdoc
22
# Run `grind build` after updating.
3-
version: 0.28.3
3+
version: 0.28.3+1
44
author: Dart Team <[email protected]>
55
description: A documentation generator for Dart.
66
homepage: https://github.com/dart-lang/dartdoc

0 commit comments

Comments
 (0)