Skip to content
Snippets Groups Projects
Commit 5f371a3c authored by Jan-Niklas Burfeind's avatar Jan-Niklas Burfeind
Browse files

gluon-web-model: fix mixed indentation

parent cad694a2
No related branches found
No related tags found
No related merge requests found
......@@ -56,9 +56,9 @@
var match;
if ((match = this.match(/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/))) {
return (match[1] >= 0) && (match[1] <= 255) &&
(match[2] >= 0) && (match[2] <= 255) &&
(match[3] >= 0) && (match[3] <= 255) &&
(match[4] >= 0) && (match[4] <= 255);
(match[2] >= 0) && (match[2] <= 255) &&
(match[3] >= 0) && (match[3] <= 255) &&
(match[4] >= 0) && (match[4] <= 255);
}
return false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment