Browse Source

Closes #33: Improve Html Editor

pull/65/head
Sebastian Stehle 9 years ago
parent
commit
d1f6b22e75
  1. 5
      src/Squidex.Read/Squidex.Read.csproj
  2. 2
      src/Squidex/app/framework/angular/rich-editor.component.ts

5
src/Squidex.Read/Squidex.Read.csproj

@ -16,9 +16,4 @@
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="1.1.1" />
<PackageReference Include="NodaTime" Version="2.0.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="IdentityServer4">
<HintPath>C:\Users\mail2\.nuget\packages\identityserver4\1.1.1\lib\netstandard1.4\IdentityServer4.dll</HintPath>
</Reference>
</ItemGroup>
</Project>

2
src/Squidex/app/framework/angular/rich-editor.component.ts

@ -86,7 +86,7 @@ export class RichEditorComponent implements ControlValueAccessor, AfterViewInit,
self.tinyEditor.setContent(this.value || '');
}, 500);
},
target: this.editor.nativeElement
removed_menuitems: 'newdocument', plugins: 'code', target: this.editor.nativeElement
});
});
}

Loading…
Cancel
Save