Project

General

Profile

Actions

Bug #13469

closed

JS error when loading Rules pages

Added by Nicolas CHARLES over 5 years ago. Updated over 5 years ago.

Status:
Released
Priority:
N/A
Category:
Web - UI & UX
Target version:
Severity:
UX impact:
User visibility:
Effort required:
Priority:
0
Name check:
Fix check:
Regression:

Description

If i load the rules page with details (url like https://192.168.41.2/rudder/secure/configurationManager/ruleManagement#%7B%22ruleId%22:%22f3d7c01c-624a-4716-8d85-67df12febfd1%22%7D , I get the following error:

SyntaxError: missing } after function body[En savoir plus] ruleManagement:159 note: { opened at line 137, column 47

indeed, the method checkLength is missing a closing }


$.fn.dataTableExt.oStdClasses.sPageButtonStaticDisabled="paginate_button_disabled";
        function updateTips( t ) {
          tips
            .text( t )
            .addClass( "ui-state-highlight" );
          setTimeout(function() {
            tips.removeClass( "ui-state-highlight", 1500 );
          }, 500 );
        }
        function checkLength( o, n, min, max ) {
          if ( o.val().length > max || o.val().length < min ) {
            o.addClass( "ui-state-error" );
            updateTips( "Length of " + n + " must be between " +
              min + " and " + max + "." );
            return false;
          } else {
            return true;
          }
        ;
jQuery(document).ready(function() {
        var ruleData = null;
        try {
          ruleData = decodeURI(window.location.hash.substring(1)) ;
        } catch(e) {
          ruleData = null
        }
        if( ruleData != null && ruleData.length > 0) {
          lift.ajax('F5965381864232ZCNWM=' + encodeURIComponent(ruleData), null, null, null)
        }
    ;});
// ]]>

happens on 5.0

Actions

Also available in: Atom PDF