icons hebben geen ../Pictures aanduiding nodig

svn path=/Website/trunk/; revision=31302
This commit is contained in:
Jos Groot Lipman
2016-11-01 08:44:23 +00:00
parent 8579da83bb
commit ef61e60ca4
2 changed files with 5 additions and 5 deletions

View File

@@ -530,15 +530,15 @@ if (options.length > 1) {
var buttons = []; var buttons = [];
if (this_res.couldCreate) if (this_res.couldCreate)
{ {
buttons.push( {id: "repeatbutton", title: L("lcl_res_add_deelres"), icon: "../Pictures/resrepeat.png", action: "makeMulti()" } ); buttons.push( {id: "repeatbutton", title: L("lcl_res_add_deelres"), icon: "resrepeat.png", action: "makeMulti()" } );
if (restype == "R") if (restype == "R")
buttons.push( {title: L("lcl_res_add_deelresruimte"), icon: "../Pictures/plus.png", action: "ruimteErbij('" + restype + "')" } ); buttons.push( {title: L("lcl_res_add_deelresruimte"), icon: "plus.png", action: "ruimteErbij('" + restype + "')" } );
if (restype == "CV") if (restype == "CV")
buttons.push( {title: L("lcl_res_add_deelresreservering"), icon: "../Pictures/plus.png", action: "ruimteErbij('" + restype + "')" } ); buttons.push( {title: L("lcl_res_add_deelresreservering"), icon: "plus.png", action: "ruimteErbij('" + restype + "')" } );
} }
if (multiDeel && this_res.couldCreate) if (multiDeel && this_res.couldCreate)
{ {
buttons.push({ title: L("lcl_res_multiple_save"), icon: "../Pictures/doc_page.png", action: "MultiSave()" }); buttons.push({ title: L("lcl_res_multiple_save"), icon: "doc_page.png", action: "MultiSave()" });
buttons.push({ icon: "print.png", title: L("lcl_print"), action: 'res_print()' }); buttons.push({ icon: "print.png", title: L("lcl_print"), action: 'res_print()' });
buttons.push({ icon: "email.png", title: L("lcl_noti_res_email"), action: "res_mail()" }); buttons.push({ icon: "email.png", title: L("lcl_noti_res_email"), action: "res_mail()" });
} }

View File

@@ -350,7 +350,7 @@ FCLTHeader.Requires({plugins: ["jQuery"]})
// Hier (altijd) testen op user.checkAutorisation("WEB_FACFAC", true) vind ik te veel eer // Hier (altijd) testen op user.checkAutorisation("WEB_FACFAC", true) vind ik te veel eer
if ((user.oslogin() == "_FACILITOR") && S("mobile_enabled") && restype == "R") if ((user.oslogin() == "_FACILITOR") && S("mobile_enabled") && restype == "R")
{ {
buttons.push( {title: "Touch", icon: "../Pictures/hand_point.png", action: "res_touch()" }); buttons.push( {title: "Touch", icon: "hand_point.png", action: "res_touch()" });
} }
if (this_res.canChange || this_res.canChangeFEExtended) if (this_res.canChange || this_res.canChangeFEExtended)