Multiple fixes:
- Caching of overrides was using inconsistent tag in Shortcut assets. - Fix JavaScript race condition in dashlet prefs form code.
This commit is contained in:
parent
3922cf7238
commit
58449bb158
3 changed files with 15 additions and 7 deletions
|
|
@ -516,11 +516,11 @@ function dashboard_toggleEditForm(event,shortcutId,shortcutUrl) {
|
|||
return;
|
||||
}
|
||||
// Create the new form element.
|
||||
formDiv = document.createElement("div");
|
||||
var formDiv = document.createElement("div");
|
||||
formDiv.id = "form" + shortcutId + "_div";
|
||||
formDiv.className = "userPrefsForm";
|
||||
parentDiv = document.getElementById("td" + shortcutId + "_div");
|
||||
contentDiv = document.getElementById("ct" + shortcutId + "_div");
|
||||
var parentDiv = document.getElementById("td" + shortcutId + "_div");
|
||||
var contentDiv = document.getElementById("ct" + shortcutId + "_div");
|
||||
parentDiv.insertBefore(formDiv,contentDiv);
|
||||
var hooha = AjaxRequest.get(
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue