Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* information: "Portions copyright [year] [name of copyright owner]".
*
* Copyright 2011-2016 ForgeRock AS.
* Portions Copyrighted 2026 3A Systems, LLC
*/

define([
Expand Down Expand Up @@ -103,7 +104,7 @@ define([

showMessage: function() {
var _this = this,
alertClass = "alert-info",
alertClass,
alertIcon = "alert-message-icon",
delay = _this.delay + (this.list[0].message.length * 20);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* information: "Portions copyright [year] [name of copyright owner]".
*
* Copyright 2012-2016 ForgeRock AS.
* Portions Copyrighted 2026 3A Systems, LLC
*/

define([
Expand Down Expand Up @@ -118,7 +119,7 @@ define([
var cDialog = obj.currentDialog, cDialogArgs = obj.currentDialogArgs;

obj.changeView(obj.currentView, obj.currentViewArgs, function() {}, true);
if (cDialog && cDialog !== null) {
if (cDialog) {
obj.showDialog(cDialog, cDialogArgs);
}
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ define([
* @returns {Boolean}
*/
"isUrl": function(string){
var regexp = /(http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/;
var regexp = /(http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@\-\/]))?/;
return regexp.test(string);
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<!-- Copyright 2016 ForgeRock AS.
Portions Copyrighted 2026 3A Systems, LLC
License terms: https://forgerock.org/cddlv1-0/ -->
<div class="container">
<div class="row">
Expand All @@ -24,7 +25,7 @@
<div class="remember-forgot clearfix">
<div class="checkbox pull-left">
<label>
<input type="checkbox" type="checkbox" name="loginRemember"> {{t "templates.user.LoginTemplate.loginRemember"}}
<input type="checkbox" name="loginRemember"> {{t "templates.user.LoginTemplate.loginRemember"}}
</label>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* information: "Portions copyright [year] [name of copyright owner]".
*
* Copyright 2015-2016 ForgeRock AS.
* Portions Copyrighted 2026 3A Systems, LLC
*/

define([
Expand Down Expand Up @@ -127,7 +128,7 @@ define([
}

// validate form only in case security question was selected
if (!isKbaQuestion || (isKbaQuestion && (target.val() !== ""))) {
if (!isKbaQuestion || target.val() !== "") {
ValidatorsManager.bindValidators(form, Configuration.loggedUser.baseEntity, function () {
ValidatorsManager.validateAllFields(form);
});
Expand Down
Loading