| author | akozak | 2011-11-23 01:28:27 (EST) |
|---|---|---|
| committer | Winston Prakash | 2011-12-01 20:47:03 (EST) |
| commit | 231bf91d42ffa4e9fd4ce2c7f35d3771c8024ebc (patch) (side-by-side diff) | |
| tree | 9b51daee6fbc20bade9a311826e325700586bb1b | |
| parent | 7434e8b93338bff3435b9758da07ec294824b153 (diff) | |
| download | org.eclipse.hudson.core-231bf91d42ffa4e9fd4ce2c7f35d3771c8024ebc.zip org.eclipse.hudson.core-231bf91d42ffa4e9fd4ce2c7f35d3771c8024ebc.tar.gz org.eclipse.hudson.core-231bf91d42ffa4e9fd4ce2c7f35d3771c8024ebc.tar.bz2 | |
Add IE hook for highlighting overridden values
Signed-off-by: Winston Prakash <winston.prakash@gmail.com>
| -rw-r--r-- | hudson-war/pom.xml | 2 | ||||
| -rw-r--r-- | hudson-war/src/main/webapp/css/style.css | 2 | ||||
| -rw-r--r-- | hudson-war/src/main/webapp/scripts/cascading.js | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/hudson-war/pom.xml b/hudson-war/pom.xml index 1ec9b2c..4e7aebe 100644 --- a/hudson-war/pom.xml +++ b/hudson-war/pom.xml @@ -230,7 +230,7 @@ <artifactItem> <groupId>org.hudsonci.plugins</groupId> <artifactId>git</artifactId> - <version>2.1.1</version> + <version>2.1.1_1</version> <type>hpi</type> <overWrite>true</overWrite> <outputDirectory>target/generated-resources/WEB-INF/plugins</outputDirectory> diff --git a/hudson-war/src/main/webapp/css/style.css b/hudson-war/src/main/webapp/css/style.css index ccce54a..6446519 100644 --- a/hudson-war/src/main/webapp/css/style.css +++ b/hudson-war/src/main/webapp/css/style.css @@ -1003,7 +1003,7 @@ div.deleteSlaveDialog h4 { /* ======================== "Cascading project" ==========================*/ /* --- Optional Block, Entry Block --- */ tr.optional-block-start > td.modified, -tr.modified > td.setting-name, tr.modified > td.setting-main, tr.modified > td.setting-leftspace { +tr.modified > td.setting-name, tr.modified > td.setting-main, tr.modified > td.setting-leftspace, td.modified { background-color: #FFE8C9; } diff --git a/hudson-war/src/main/webapp/scripts/cascading.js b/hudson-war/src/main/webapp/scripts/cascading.js index 4c3cb50..00a96e7 100644 --- a/hudson-war/src/main/webapp/scripts/cascading.js +++ b/hudson-war/src/main/webapp/scripts/cascading.js @@ -40,7 +40,7 @@ jQuery(document).ready(function(){ method : 'get', onSuccess : function(x) { location.reload(true); - }, + } }); }); });
\ No newline at end of file |

