This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <title>LESS client side example.</title> | |
| <link rel="stylesheet/less" href="css/less/styles.less" /> | |
| <script src="/js/vendor/less-1.3.0.min.js"></script> | |
| </head> | |
| <body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| URLRequestDefaults.idleTimeout = 1000*60*60; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -startup | |
| plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar | |
| --launcher.library | |
| plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.100.v20110502 | |
| -showsplash | |
| org.eclipse.platform | |
| --launcher.XXMaxPermSize | |
| 256m | |
| --launcher.defaultAction | |
| openFile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(function () { | |
| $('#Text').ckeditor(); | |
| CKFinder.setupCKEditor(null, '/ckfinder/'); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. | |
| For licensing, see LICENSE.html or http://ckeditor.com/license | |
| */ | |
| CKEDITOR.editorConfig = function( config ) | |
| { | |
| // Define changes to default configuration here. For example: | |
| // config.language = 'fr'; | |
| // config.uiColor = '#AADC6E'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. | |
| For licensing, see LICENSE.html or http://ckeditor.com/license | |
| */ | |
| CKEDITOR.editorConfig = function( config ) | |
| { | |
| // Define changes to default configuration here. For example: | |
| // config.language = 'fr'; | |
| // config.uiColor = '#AADC6E'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. | |
| For licensing, see LICENSE.html or http://ckeditor.com/license | |
| */ | |
| CKEDITOR.editorConfig = function( config ) | |
| { | |
| // Define changes to default configuration here. For example: | |
| // config.language = 'fr'; | |
| // config.uiColor = '#AADC6E'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Web.Mvc; | |
| using CKEditorExample.ViewModels.Content; | |
| namespace CKEditorExample.Controllers | |
| { | |
| public class ContentController : Controller | |
| { | |
| [HttpGet] | |
| public ActionResult Index() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @model CKEditorExample.ViewModels.Content.ContentViewModel | |
| @{ | |
| ViewBag.Title = "Content Entry"; | |
| Layout = "~/Views/Shared/_Layout.cshtml"; | |
| } | |
| <h2>Content Input</h2> | |
| <form method="post" action="/Content/Submit"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace CKEditorExample.ViewModels.Content | |
| { | |
| public class ContentViewModel | |
| { | |
| public string Text { get; set; } | |
| } | |
| } |