Browse Source

remove create button in favor of trafnar's result idea

main
Mikey Oz 3 years ago
parent
commit
a8767e8b02
  1. 16
      app/client.imba

16
app/client.imba

@ -181,14 +181,12 @@ tag app
mr:10px rd:3px h:20px w:20px bd:none mr:10px rd:3px h:20px w:20px bd:none
css .disabled css .disabled
c:gray4 cursor:default @important c:gray4 cursor:default
<.buttons> css .create
c:purple4 cursor:pointer py:10px
if loading_create <.buttons>
<.button.disabled> "CREATE"
else
<.button@click=handle_click_create> "CREATE"
<.button@click=handle_click_delete> "DELETE" <.button@click=handle_click_delete> "DELETE"
<.button@click=handle_click_export> "EXPORT" <.button@click=handle_click_export> "EXPORT"
@ -214,6 +212,12 @@ tag app
@input=handle_input @input=handle_input
@paste=handle_paste @paste=handle_paste
> >
if state.query.trim!.split(/\s+/).length > 1
if loading_create
<.create.disabled> "+ {state.query}"
else
<.create@click=handle_click_create> "+ {state.query}"
<.links> <.links>
for obj in state.scored_links for obj in state.scored_links
<.link@click.prevent=handle_click_link(obj)> <.link@click.prevent=handle_click_link(obj)>

Loading…
Cancel
Save