%PDF- %PDF-
| Direktori : /www/varak.net/wiki.varak.net/extensions/VisualEditor/lib/ve/demos/ve/ |
| Current File : //www/varak.net/wiki.varak.net/extensions/VisualEditor/lib/ve/demos/ve/demo.minimal.js |
/*!
* VisualEditor minimal demo
*
* @copyright 2011-2016 VisualEditor Team and others; see http://ve.mit-license.org
*/
// Set up the platform and wait for i18n messages to load
new ve.init.sa.Platform( ve.messagePaths ).initialize()
.fail( function () {
$( '.ve-instance' ).text( 'Sorry, this browser is not supported.' );
} )
.done( function () {
// Create the target
var target = new ve.init.sa.Target();
// Create a document model for a new surface
target.addSurface(
ve.dm.converter.getModelFromDom(
ve.createDocumentFromHtml( '<p><b>Hello,</b> <i>World!</i></p>' ),
// Optional: Document language, directionality (ltr/rtl)
{ lang: $.i18n().locale, dir: $( 'body' ).css( 'direction' ) }
)
);
// Append the target to the document
$( '.ve-instance' ).append( target.$element );
$( '.ve-demo-convert' ).on( 'click', function () {
// Get the current HTML from the surface and display
$( '.ve-demo-html' ).val( target.getSurface().getHtml() );
} );
} );