mirror of
https://github.com/ilyakooo0/urbit.git
synced 2025-01-07 07:30:23 +03:00
disable "empty path" handling out of confusion
This commit is contained in:
parent
a2d9922d9c
commit
f93a8c2401
@ -47,7 +47,7 @@ Links = React.createFactory query {
|
|||||||
render: -> div {className:'links'}, @props.children, @_render()
|
render: -> div {className:'links'}, @props.children, @_render()
|
||||||
_render: -> div {id:"sibs"}, div {className:"active"}, a {}, @props.curr
|
_render: -> div {id:"sibs"}, div {className:"active"}, a {}, @props.curr
|
||||||
|
|
||||||
CLICK = 'a' # 'a,h1,h2,h3,h4,h5,h6'
|
CLICK = 'a,h1,h2,h3,h4,h5,h6'
|
||||||
module.exports = query {sein:'t',path:'t',name:'t',next:'t',prev:'t'},recl
|
module.exports = query {sein:'t',path:'t',name:'t',next:'t',prev:'t'},recl
|
||||||
displayName: "Anchor"
|
displayName: "Anchor"
|
||||||
getInitialState: -> url: window.location.pathname
|
getInitialState: -> url: window.location.pathname
|
||||||
|
@ -142,7 +142,7 @@ Links = React.createFactory(query({
|
|||||||
}
|
}
|
||||||
})));
|
})));
|
||||||
|
|
||||||
CLICK = 'a';
|
CLICK = 'a,h1,h2,h3,h4,h5,h6';
|
||||||
|
|
||||||
module.exports = query({
|
module.exports = query({
|
||||||
sein: 't',
|
sein: 't',
|
||||||
@ -1778,29 +1778,6 @@ TreeStore = _.extend(EventEmitter.prototype, {
|
|||||||
}
|
}
|
||||||
if (data.kids && _.isEmpty(data.kids)) {
|
if (data.kids && _.isEmpty(data.kids)) {
|
||||||
old.EMPTY = true;
|
old.EMPTY = true;
|
||||||
old.body = {
|
|
||||||
gn: 'div',
|
|
||||||
c: [
|
|
||||||
{
|
|
||||||
gn: 'h1',
|
|
||||||
ga: {
|
|
||||||
className: 'error'
|
|
||||||
},
|
|
||||||
c: ['Error: Empty path']
|
|
||||||
}, {
|
|
||||||
gn: 'div',
|
|
||||||
c: [
|
|
||||||
{
|
|
||||||
gn: 'pre',
|
|
||||||
c: [this.getCurr()]
|
|
||||||
}, {
|
|
||||||
gn: 'span',
|
|
||||||
c: ['is either empty or does not exist.']
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
return _data[path] = old;
|
return _data[path] = old;
|
||||||
},
|
},
|
||||||
|
@ -59,14 +59,15 @@ TreeStore = _.extend EventEmitter.prototype, {
|
|||||||
|
|
||||||
if data.kids && _.isEmpty data.kids
|
if data.kids && _.isEmpty data.kids
|
||||||
old.EMPTY = true
|
old.EMPTY = true
|
||||||
old.body =
|
# XX why here?
|
||||||
gn: 'div'
|
# old.body =
|
||||||
c: [ {gn:'h1', ga:{className:'error'}, c:['Error: Empty path']}
|
# gn: 'div'
|
||||||
{gn:'div', c:[
|
# c: [ {gn:'h1', ga:{className:'error'}, c:['Error: Empty path']}
|
||||||
{gn:'pre', c:[@getCurr()]}
|
# {gn:'div', c:[
|
||||||
{gn:'span', c:['is either empty or does not exist.']}
|
# {gn:'pre', c:[@getCurr()]}
|
||||||
# {gn:'list'} XX handle empty snip
|
# {gn:'span', c:['is either empty or does not exist.']}
|
||||||
] }]
|
# # {gn:'list'} XX handle empty snip
|
||||||
|
# ] }]
|
||||||
|
|
||||||
_data[path] = old
|
_data[path] = old
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user