Commit 9ee1c57d45ad2995fb5b076aa4988b37a151255e

Authored by totoro
1 parent 924b60ab

replace image by img according to latest calexium_lib

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
view/view_table_renderer.anubis
... ... @@ -224,7 +224,7 @@ define HTML_Row(HTML_Off_Form) make_line
224 224 // link(id, string) then cell((HTML_Off_Form)actioner(same,same, link(string), action_name, [("table_name", table_name),("id",id)])),
225 225 link(id, string) then cell((HTML_Off_Form)literal(jq_dialog_open(string, dialog_id(uid+_action_name+"_dlg_ajax"), "'id="+id+"'"))),
226 226 link_id_action(id, name, action) then cell((HTML_Off_Form)actioner(same,same, link(name), action, [("id",id)])),
227   - icon(icon_path) then cell((HTML_Off_Form)image([], icon_path, ""))
  227 + icon(icon_path) then cell((HTML_Off_Form)img(icon_path))
228 228 },
229 229 make_line(uid, table_name, _action_name, t, [cell . so_far])
230 230 }.
... ... @@ -272,7 +272,7 @@ define HTML_Header_Row(HTML_Off_Form)
272 272 text(string) then header_cell((HTML_Off_Form)text(_T(string))),
273 273 link(id, string) then header_cell((HTML_Off_Form)actioner(same, same, link(string), hkc_edit_table,[])), //TODO
274 274 link_id_action(id, text, action) then header_cell((HTML_Off_Form)actioner(same,same, link(text), action,[("id",id)])), //TODO
275   - icon(icon_path) then header_cell((HTML_Off_Form)image([], icon_path, ""))
  275 + icon(icon_path) then header_cell((HTML_Off_Form)img(icon_path))
276 276 },
277 277 make_header(_T, t, [cell . so_far])
278 278 }.
... ...