document.title in admin mode do not allow to edit several forms at same time
-
Hi,
This is common. The document.title is set, as most of time, the “site title”, so if you edit several definitions of forms at same time you never know which is behind one tab of your browser if you do not open it.
document.title is something useful.
For me after several errors and time lost I have patched the plugin as this (as for others) :
in “script_rm_admin.js” at the end of document.ready I have added this code (this is not the more simple but the easiest) :
// todo ###b81116 - Done : Change document.title for edit rm_grid_title = jQuery('.rm-grid-title'); if (rm_grid_title.length) { subtitle = rm_grid_title[0].innerText; } else subtitle = ""; document.title = 'MagicForm - edit : ' + subtitle + document.title; });
Best regards
Trebly
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘document.title in admin mode do not allow to edit several forms at same time’ is closed to new replies.