* Addressbook: Fix broken addressbook list in mobile view

This commit is contained in:
Hadi Nategh 2017-04-24 17:59:09 +02:00
parent e2d8c9f952
commit 21dfde5b96

View File

@ -524,6 +524,16 @@ var et2_nextmatch_controller = (function(){ "use strict"; return et2_dataview_co
try {
links = typeof this._widget.options.settings.placeholder_actions != 'undefined' ?
this._widget.options.settings.placeholder_actions : (this._widget.options.add ? ["add"] : []);
// Make sure that placeholder actions are defined and existed in client-side,
// otherwise do not set them as placeholder. for instance actions with
// attribute hideOnMobile do not get sent to client-side.
if (links.length > 0)
{
for (var i=links.length-1; i >= 0; i--)
{
if (typeof this._widget.options.actions[links[i]] == 'undefined') links.splice(i,1);
}
}
} catch (e) {
}