@@ -417,7 +417,7 @@ define([
417
417
* Starts the cell selection mode
418
418
*/
419
419
TableCell . prototype . _startCellSelection = function ( ) {
420
- if ( ! this . tableObj . selection . cellSelectionMode ) {
420
+ if ( ! this . tableObj . selection . cellSelectionMode ) {
421
421
422
422
//unselect currently selected cells
423
423
this . tableObj . selection . unselectCells ( ) ;
@@ -427,7 +427,7 @@ define([
427
427
428
428
//bind a global mouseup event handler to stop cell selection
429
429
var that = this ;
430
- jQuery ( 'body' ) . bind ( 'mouseup.cellselection' , function ( event ) {
430
+ jQuery ( 'body' ) . bind ( 'mouseup.cellselection' , function ( event ) {
431
431
that . _endCellSelection ( ) ;
432
432
} ) ;
433
433
@@ -438,7 +438,7 @@ define([
438
438
/**
439
439
* Ends the cell selection mode
440
440
*/
441
- TableCell . prototype . _endCellSelection = function ( ) {
441
+ TableCell . prototype . _endCellSelection = function ( ) {
442
442
if ( this . tableObj . selection . cellSelectionMode ) {
443
443
Utils . selectAnchorContents ( this . tableObj . selection . selectedCells ) ;
444
444
@@ -474,13 +474,13 @@ define([
474
474
"left" : left
475
475
} ;
476
476
} ;
477
-
477
+
478
478
/**
479
479
* Toggles selection of cell.
480
480
* This works only when cell selection mode is active.
481
481
*/
482
- TableCell . prototype . _selectCellRange = function ( ) {
483
- if ( this . tableObj . selection . resizeMode || ! this . tableObj . selection . cellSelectionMode ) {
482
+ TableCell . prototype . _selectCellRange = function ( ) {
483
+ if ( this . tableObj . selection . resizeMode || ! this . tableObj . selection . cellSelectionMode ) {
484
484
return ;
485
485
}
486
486
@@ -528,7 +528,7 @@ define([
528
528
if ( ! jQuery . browser . msie ) {
529
529
var s = window . getSelection ( ) ;
530
530
// WebKit
531
- if ( s . setBaseAndExtent /*&& e> 0 */ ) {
531
+ if ( s . setBaseAndExtent /*&& e> 0 */ ) {
532
532
s . setBaseAndExtent ( e , 0 , e , Math . max ( 0 , e . innerText . length - 1 ) ) ;
533
533
}
534
534
// Firefox and Opera
@@ -582,30 +582,24 @@ define([
582
582
} ;
583
583
584
584
/**
585
- * The key-up event for the editable-div in the td-field. Just check if the div
586
- * is empty and insert an
585
+ * The key-up event for the editable-div in the td-field.
587
586
*
588
587
* @param jqEvent
589
588
* the jquery-event object
590
589
* @return void
591
590
*/
592
- TableCell . prototype . _editableKeyUp = function ( jqEvent ) {
593
- //TODO do we need to check for empty cells and insert a space?
594
- //this._checkForEmptyEvent(jqEvent);
595
- } ;
591
+ TableCell . prototype . _editableKeyUp = function ( jqEvent ) { } ;
596
592
597
593
/**
598
- * The key-down event for the ediable-div in the td-field. Check if the the div
599
- * is empty and insert an  . Furthermore if cells are selected, unselect
600
- * them.
594
+ * The key-down event for the ediable-div in the td-field.
601
595
*
602
596
* @param jqEvent
603
597
* the jquery-event object
604
598
* @return void
605
599
*/
606
600
TableCell . prototype . _editableKeyDown = function ( jqEvent ) {
607
601
var KEYCODE_TAB = 9 ;
608
- this . _checkForEmptyEvent ( jqEvent ) ;
602
+
609
603
if ( this . obj [ 0 ] === this . tableObj . obj . find ( 'tr:last td:last' ) [ 0 ] ) {
610
604
// only add a row on a single key-press of tab (so check that alt-,
611
605
// shift- or ctrl-key are NOT pressed)
@@ -624,30 +618,6 @@ define([
624
618
}
625
619
} ;
626
620
627
- /**
628
- * The custom keyup event for a table-cell Checks if the cell is empty and
629
- * inserts a space (\u00a0)
630
- *
631
- * @param e
632
- * the event object which is given by jquery
633
- * @return void
634
- */
635
- TableCell . prototype . _checkForEmptyEvent = function ( jqEvent ) {
636
- var $wrapper = jQuery ( this . wrapper ) ,
637
- text = $wrapper . text ( ) ;
638
-
639
- if ( $wrapper . children ( ) . length > 0 ) {
640
- return ;
641
- }
642
-
643
- // if empty insert a blank space and blur and focus the wrapper
644
- if ( text === '' ) {
645
- this . wrapper . text ( '' ) ;
646
- this . wrapper . get ( 0 ) . blur ( ) ;
647
- this . wrapper . get ( 0 ) . focus ( ) ;
648
- }
649
- } ;
650
-
651
621
/**
652
622
* Given a cell, will return the container element of the contents
653
623
* of the cell. The container element may be the given cell itself,
0 commit comments