Skip to content
This repository has been archived by the owner on Mar 12, 2024. It is now read-only.

LA apps resizing after delay #265

Merged
merged 1 commit into from
Feb 13, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion activity_streams/onlineUsers/onlineUsers.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,9 @@ function ($scope, $timeout, Spaces) {
$scope.notInIlsMessage = 'Please, place this app in an inquiry space to get visualise who is active in which inquiry phase.';
$scope.$apply();
}
gadgets.window.adjustHeight();
setTimeout(function() {
gadgets.window.adjustHeight();
}, 5000);
});
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function ($scope, Spaces) {
}
return setTimeout(function() {
gadgets.window.adjustHeight();
}, 2000);
}, 5000);
});
};

Expand Down
4 changes: 3 additions & 1 deletion activity_streams/time_spent/time_spent.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,9 @@ function ($scope, Spaces) {
} else {
$scope.notInIlsMessage = 'Please, place this app in an inquiry space to visualise the time spent by users in inquiry phases.';
}
gadgets.window.adjustHeight();
setTimeout(function() {
gadgets.window.adjustHeight();
}, 5000);
});
};

Expand Down