Switch to unified view

a/AlluraTesting/jslint/jslint.js b/AlluraTesting/jslint/jslint.js
...
...
924
// style
924
// style
925
        sx = /^\s*([{:#%.=,>+\[\]@()"';]|\*=?|\$=|\|=|\^=|~=|[a-zA-Z_][a-zA-Z0-9_\-]*|[0-9]+|<\/|\/\*)/,
925
        sx = /^\s*([{:#%.=,>+\[\]@()"';]|\*=?|\$=|\|=|\^=|~=|[a-zA-Z_][a-zA-Z0-9_\-]*|[0-9]+|<\/|\/\*)/,
926
        ssx = /^\s*(\.?\d+(?:\.\d+)?|[@#!"'};:\-%.=,+\[\]()*_]|[a-zA-Z][a-zA-Z0-9._\-]*|\/\*?|<\/)/,
926
        ssx = /^\s*(\.?\d+(?:\.\d+)?|[@#!"'};:\-%.=,+\[\]()*_]|[a-zA-Z][a-zA-Z0-9._\-]*|\/\*?|<\/)/,
927
// attributes characters
927
// attributes characters
928
        //qx = /[^a-zA-Z0-9+\-_\/ ]/,
928
        //qx = /[^a-zA-Z0-9+\-_\/ ]/,
929
        qx = /[^a-zA-Z0-9+\-_\/ .]/, // We want dots in names, period
929
        qx = /[^a-zA-Z0-9+\-_\/ .#]/, // We want dots in names, period; and hashes for templating
930
// query characters for ids
930
// query characters for ids
931
        //dx = /[\[\]\/\\"'*<>.&:(){}+=#]/,
931
        //dx = /[\[\]\/\\"'*<>.&:(){}+=#]/,
932
        // allow . and /
932
        // allow . and /
933
        dx = /[\[\]\\"'*<>&:(){}+=#]/,
933
        dx = /[\[\]\\"'*<>&:(){}+=#]/,
934
934