fixed: Project Manager sometimes causes errors when adding users to a task
This commit is contained in:
parent
792b72bdd5
commit
9079254520
3 changed files with 3 additions and 2 deletions
|
|
@ -1,4 +1,5 @@
|
||||||
7.6.0
|
7.6.0
|
||||||
|
- fixed: Project Manager sometimes causes errors when adding users to a task
|
||||||
- fixed: site navigation will sometimes show as half or not styled
|
- fixed: site navigation will sometimes show as half or not styled
|
||||||
- fixed: after editting assets from the asset manager, it returns to site instead of manager
|
- fixed: after editting assets from the asset manager, it returns to site instead of manager
|
||||||
- improved Rich Text selection list, changed CS and Wiki to use it
|
- improved Rich Text selection list, changed CS and Wiki to use it
|
||||||
|
|
|
||||||
|
|
@ -40,6 +40,7 @@ function hidePopWin() {
|
||||||
|
|
||||||
function showPopWin( e ) {
|
function showPopWin( e ) {
|
||||||
|
|
||||||
|
YAHOO.util.Event.stopEvent(e);
|
||||||
var link = YAHOO.util.Event.getTarget(e);
|
var link = YAHOO.util.Event.getTarget(e);
|
||||||
|
|
||||||
if(link == "") {
|
if(link == "") {
|
||||||
|
|
|
||||||
|
|
@ -48,8 +48,7 @@ function taskEdit_updateResources(resources) {
|
||||||
|
|
||||||
var component = encodeURIComponent(resources.join(';'));
|
var component = encodeURIComponent(resources.join(';'));
|
||||||
var url = document.location.toString();
|
var url = document.location.toString();
|
||||||
var queryIndex = url.indexOf('?');
|
url = url.replace(/[#\?].*/, '');
|
||||||
if (queryIndex > -1) url = url.substr(0, queryIndex);
|
|
||||||
url += '?func=innerHtmlOfResources;resources=' + component;
|
url += '?func=innerHtmlOfResources;resources=' + component;
|
||||||
taskEdit_updateExclude("taskEdit_resourceList_addUser_a", 'user', resources);
|
taskEdit_updateExclude("taskEdit_resourceList_addUser_a", 'user', resources);
|
||||||
taskEdit_updateExclude("taskEdit_resourceList_addGroup_a", 'group', resources);
|
taskEdit_updateExclude("taskEdit_resourceList_addGroup_a", 'group', resources);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue