File tree Expand file tree Collapse file tree 2 files changed +14
-4
lines changed Expand file tree Collapse file tree 2 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -62,10 +62,10 @@ export default async function initGitGraph() {
62
62
$ ( '#rev-container' ) . addClass ( 'hide' ) ;
63
63
$ ( '#loading-indicator' ) . removeClass ( 'hide' ) ;
64
64
65
- const div = await $ . ajax ( String ( ajaxUrl ) ) ;
66
- $ ( '#pagination' ) . html ( $ ( $ . parseHTML ( div ) ) . find ( '#pagination' ) . html ( ) ) ;
67
- $ ( '#rel-container' ) . html ( $ ( $ . parseHTML ( div ) ) . find ( '#rel-container' ) . html ( ) ) ;
68
- $ ( '#rev-container' ) . html ( $ ( $ . parseHTML ( div ) ) . find ( '#rev-container' ) . html ( ) ) ;
65
+ const div = $ ( await $ . ajax ( String ( ajaxUrl ) ) ) ;
66
+ $ ( '#pagination' ) . html ( div . find ( '#pagination' ) . html ( ) ) ;
67
+ $ ( '#rel-container' ) . html ( div . find ( '#rel-container' ) . html ( ) ) ;
68
+ $ ( '#rev-container' ) . html ( div . find ( '#rev-container' ) . html ( ) ) ;
69
69
$ ( '#loading-indicator' ) . addClass ( 'hide' ) ;
70
70
$ ( '#rel-container' ) . removeClass ( 'hide' ) ;
71
71
$ ( '#rev-container' ) . removeClass ( 'hide' ) ;
Original file line number Diff line number Diff line change 47
47
.dropdown.icon {
48
48
display : none ;
49
49
}
50
+
51
+ .default.text {
52
+ padding-top : 4px ;
53
+ padding-bottom : 4px ;
54
+ }
55
+
56
+ input .search {
57
+ position : relative ;
58
+ top : 1px ;
59
+ }
50
60
}
51
61
52
62
li {
You can’t perform that action at this time.
0 commit comments