Changeset 6157
- Timestamp:
- 02/08/08 20:27:45 (7 months ago)
- Files:
-
- trunk/openlayers/examples/navigation-history.html (added)
- trunk/openlayers/lib/OpenLayers.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Control/NavigationHistory.js (added)
- trunk/openlayers/tests/Control/test_NavigationHistory.html (added)
- trunk/openlayers/tests/list-tests.html (modified) (1 diff)
- trunk/openlayers/theme/default/img/view_next_off.png (added)
- trunk/openlayers/theme/default/img/view_next_on.png (added)
- trunk/openlayers/theme/default/img/view_previous_off.png (added)
- trunk/openlayers/theme/default/img/view_previous_on.png (added)
- trunk/openlayers/theme/default/style.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers.js
r6097 r6157 156 156 "OpenLayers/Control/Panel.js", 157 157 "OpenLayers/Control/SelectFeature.js", 158 "OpenLayers/Control/NavigationHistory.js", 158 159 "OpenLayers/Geometry.js", 159 160 "OpenLayers/Geometry/Rectangle.js", trunk/openlayers/tests/list-tests.html
r6097 r6157 84 84 <li>Control/test_ModifyFeature.html</li> 85 85 <li>Control/test_MousePosition.html</li> 86 <li>Control/test_NavigationHistory.html</li> 86 87 <li>Control/test_MouseToolbar.html</li> 87 88 <li>Control/test_Navigation.html</li> trunk/openlayers/theme/default/style.css
r6025 r6157 111 111 } 112 112 113 .olControlNavigationHistoryPreviousItemActive { 114 background-image: url("img/view_previous_on.png"); 115 background-repeat: no-repeat; 116 width: 24px; 117 height: 24px; 118 } 119 .olControlNavigationHistoryPreviousItemInactive { 120 background-image: url("img/view_previous_off.png"); 121 background-repeat: no-repeat; 122 width: 24px; 123 height: 24px; 124 } 125 .olControlNavigationHistoryNextItemActive { 126 background-image: url("img/view_next_on.png"); 127 background-repeat: no-repeat; 128 width: 24px; 129 height: 24px; 130 } 131 .olControlNavigationHistoryNextItemInactive { 132 background-image: url("img/view_next_off.png"); 133 background-repeat: no-repeat; 134 width: 24px; 135 height: 24px; 136 } 137 113 138 .olControlNavToolbar .olControlNavigationItemActive { 114 139 background-image: url("img/panning-hand-on.png");
