We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25b9b7e commit 15af82aCopy full SHA for 15af82a
js/os2web_cp_service.js
@@ -7,8 +7,11 @@
7
$(document).ready(function() {
8
// Convert all nonalphanumeric chars to /.
9
$('#views-exposed-form-os2web-cp-service-cp-case-search-panel-pane-1').submit(function() {
10
- var value = $('#edit-case-id').val();
11
- $('#edit-case-id').val(value.replace(/\W/g, '/'));
+ // IE fix. Value and placeolder is the same on IE.
+ if($('#edit-case-id').attr('placeholder') !== $('#edit-case-id').val()) {
12
+ var value = $('#edit-case-id').val();
13
+ $('#edit-case-id').val(value.replace(/\W/g, '/'));
14
+ }
15
});
16
17
$( "a.qtip-this[title]" ).qtip({
0 commit comments