dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #41952
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 21415: tracker-capture: better interactive when (un)sticking right side widgets
------------------------------------------------------------
revno: 21415
committer: Abyot Asalefew Gizaw <abyota@xxxxxxxxx>
branch nick: dhis2
timestamp: Fri 2015-12-11 09:53:57 +0100
message:
tracker-capture: better interactive when (un)sticking right side widgets
modified:
dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/components/dashboard/dashboard-controller.js
dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/components/dashboard/dashboard.html
dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/styles/style.css
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/components/dashboard/dashboard-controller.js'
--- dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/components/dashboard/dashboard-controller.js 2015-12-04 17:03:20 +0000
+++ dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/components/dashboard/dashboard-controller.js 2015-12-11 08:53:57 +0000
@@ -413,12 +413,7 @@
};
$scope.stickUnstick = function(){
- $scope.stickyDisabled = !$scope.stickyDisabled;
- var layout = getCurrentDashboardLayout();
- var layoutKey = $scope.selectedProgram && $scope.selectedProgram.id ? $scope.selectedProgram.id : 'DEFAULT';
- layout[layoutKey].stickRightSide = !$scope.stickyDisabled;
- DashboardLayoutService.saveLayout(layout, false).then(function(){
- });
+ $scope.stickyDisabled = !$scope.stickyDisabled;
};
$scope.showHideWidgets = function(){
=== modified file 'dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/components/dashboard/dashboard.html'
--- dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/components/dashboard/dashboard.html 2015-10-16 13:14:30 +0000
+++ dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/components/dashboard/dashboard.html 2015-12-11 08:53:57 +0000
@@ -61,7 +61,7 @@
<!-- dashboard bigger widgets end -->
<!-- dashboard smaller widgets begin -->
- <div ng-class="widgetSize.smaller" sticky offset="50" disabled-sticky="stickyDisabled">
+ <div ng-class="widgetSize.smaller" sticky offset="100" disabled-sticky="stickyDisabled">
<div id="smallerWidget"
d2-sortable
bigger-widgets={{ dashboardWidgets | filter: {parent: 'biggerWidget'} }}
=== modified file 'dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/styles/style.css'
--- dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/styles/style.css 2015-12-10 11:09:24 +0000
+++ dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/styles/style.css 2015-12-11 08:53:57 +0000
@@ -1188,7 +1188,7 @@
/* this is because bootstrap adds min-height of 1px for smaller sized columns to prevent them from collapsing when empty*/
.remove-one-pix {
- margin-top: -1px;
+ margin-top: -2px;
}
.row.row-striped:nth-of-type(odd) {