Update VE core submodule to master (61dea59)

New changes:
76bbf3b [BREAKING CHANGE] Fix camel-casing of countNonInternalElements

Local changes:
Use renamed countNonInternalElements function

Change-Id: Ib5f86ea5cfeb5e577f61349ed4bbb231ea155638
This commit is contained in:
James D. Forrester 2014-07-29 17:12:55 -07:00
parent 9ebd388e28
commit 1fcc9fa035
3 changed files with 3 additions and 3 deletions

2
lib/ve

@ -1 +1 @@
Subproject commit 07092183c1d39ed15839a0355aefd64fc8041d51
Subproject commit 61dea59eedc4efc6057841dc0ca137303a032c51

View file

@ -300,7 +300,7 @@ ve.dm.MWImageModel.prototype.insertImageNode = function ( fragment ) {
fragment.insertContent( contentToInsert );
// Check if there is caption document and insert it
captionDoc = this.getCaptionDocument();
if ( captionDoc.data.getLength() > 4 ) {
if ( captionDoc.data.countNonInternalElements() > 2 ) {
// Add contents of new caption
surfaceModel.change(
ve.dm.Transaction.newFromDocumentInsertion(

View file

@ -178,7 +178,7 @@ ve.ui.MWReferenceDialog.static.getPasteRules = function () {
ve.ui.MWReferenceDialog.prototype.onDocumentTransact = function () {
var data = this.referenceModel.getDocument().data,
// TODO: Check for other types of empty, e.g. only whitespace?
hasContent = data.countNoninternalElements() > 2;
hasContent = data.countNonInternalElements() > 2;
this.actions.setAbilities( {
'apply': hasContent,