Compare commits

..

No commits in common. "d04a6ee5380a5b48540c2f361928f875a9e731a2" and "360103bee382ddb4da91a0686458acd20f43dd79" have entirely different histories.

2 changed files with 2 additions and 23 deletions

View File

@ -1856,7 +1856,7 @@ var Outline = {
this.remove(edited)
return } },
a_x: function(evt){
c_d: function(evt){
// toggle done...
evt.preventDefault()
tasks.toggleDone(this) },
@ -1866,15 +1866,6 @@ var Outline = {
// - should we select the .block or .text???
// - we should remember the first state and apply it (a-la FAR)
// and not simply toggle on/off per node...
Shift: function(evt){
if(this.get('edited')){
return }
// XXX set selection mode
// ...need to reset this when shift key is released...
// one way to do this is to save a press id and reset
// it each call -- if the id has changed since lass s-up
// is pressed then reset mode...
},
s_ArrowUp: function(evt){
if(this.get('edited')){
return }
@ -1891,18 +1882,6 @@ var Outline = {
elem.removeAttribute('selected')
: elem.setAttribute('selected', '')
this.keyboard.ArrowDown.call(this, evt) },
c_d: function(evt){
if(this.get('edited')){
return }
evt.preventDefault()
for(var e of this.get('selected')){
e.removeAttribute('selected') } },
c_a: function(evt){
if(this.get('edited')){
return }
evt.preventDefault()
for(var e of this.get('all')){
e.setAttribute('selected', '') } },
// toggle checkbox...
' ': function(evt){

View File

@ -219,7 +219,7 @@ var setup = function(){
| c-left | prev checkbox |
| c-right | next checkbox |
| space | toggle current checkbox |
| a-x | toggle current element DONE |
| c-d | toggle current element DONE |
| c-z | normal: undo |
| c-s-z | normal: redo |
| c | normal: crop current node |