Added a helper function to main.js for challenge making
This commit is contained in:
@ -743,8 +743,8 @@ form.code span {
|
||||
}
|
||||
|
||||
.scroll-locker {
|
||||
overflow-x: auto;
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.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',
|
||||
['ui.bootstrap']);
|
||||
profileValidation.controller('profileValidationController', ['$scope', '$http',
|
||||
|
Reference in New Issue
Block a user