This repository was archived by the owner on Jul 2, 2022. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66using MonoTouch . Dialog ;
77using System . Linq ;
88using CodeFramework . iOS . Utils ;
9+ using CodeHub . iOS . ViewControllers ;
910
1011namespace CodeHub . iOS . Views . Issues
1112{
@@ -45,7 +46,7 @@ public override void ViewDidLoad()
4546 var content = new MultilinedElement ( "Description" ) ;
4647 content . Tapped += ( ) =>
4748 {
48- var composer = new Composer { Title = "Issue Description" , Text = content . Value } ;
49+ var composer = new MarkdownComposerViewController { Title = "Issue Description" , Text = content . Value } ;
4950 composer . NewComment ( this , ( text ) => {
5051 vm . Content = text ;
5152 composer . CloseComposer ( ) ;
Original file line number Diff line number Diff line change 99using CodeHub . Core . ViewModels . Source ;
1010using CodeFramework . iOS . ViewControllers ;
1111using CodeFramework . iOS . Utils ;
12- using CodeFramework . Core . Services ;
12+ using CodeFramework . Core . Services ;
13+ using CodeHub . iOS . ViewControllers ;
1314
1415namespace CodeHub . ViewControllers
1516{
@@ -122,7 +123,7 @@ private void PromptForComment(JavascriptCommentModel model)
122123
123124 private void ShowCommentComposer ( int line )
124125 {
125- var composer = new Composer ( ) ;
126+ var composer = new MarkdownComposerViewController ( ) ;
126127 composer . NewComment ( this , async ( text ) => {
127128 try
128129 {
Original file line number Diff line number Diff line change 88using CodeFramework . iOS . Utils ;
99using System . Linq ;
1010using MonoTouch . Foundation ;
11+ using CodeHub . iOS . ViewControllers ;
1112
1213namespace CodeHub . iOS . Views . Source
1314{
@@ -137,7 +138,7 @@ public void Render()
137138
138139 void AddCommentTapped ( )
139140 {
140- var composer = new Composer ( ) ;
141+ var composer = new MarkdownComposerViewController ( ) ;
141142 composer . NewComment ( this , async ( text ) => {
142143 try
143144 {
You can’t perform that action at this time.
0 commit comments