Added a helper function to main.js for challenge making
This commit is contained in:
@ -743,8 +743,8 @@ form.code span {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.scroll-locker {
|
.scroll-locker {
|
||||||
overflow-x: auto;
|
overflow-x: hidden;
|
||||||
overflow-y: scroll;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.big-error-icon {
|
.big-error-icon {
|
||||||
|
@ -359,6 +359,10 @@ $(document).ready(function() {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function defCheck(a){
|
||||||
|
if(a !== 'undefined'){return(true);}else{return(false);}
|
||||||
|
}
|
||||||
|
|
||||||
var profileValidation = angular.module('profileValidation',
|
var profileValidation = angular.module('profileValidation',
|
||||||
['ui.bootstrap']);
|
['ui.bootstrap']);
|
||||||
profileValidation.controller('profileValidationController', ['$scope', '$http',
|
profileValidation.controller('profileValidationController', ['$scope', '$http',
|
||||||
|
Reference in New Issue
Block a user