I'm using angular 1.x. And i added waitMe.css and also waitMe.js.
And this is my javascript controller file.
$scope.makeNewLogin = function () {
$('#login-box-body').waitMe({
effect: 'bounce',
text: '',
bg: 'rgba(255,255,255,0.7)',
color: '#000',
maxSize: '',
waitTime: -1,
source: 'img.svg',
textPos: 'vertical',
fontSize: '',
onClose: function (el) {
}
});
And also this is the corresponding HTML div.
<div class="login-box-body">
<div class="wrapper">
<form class="form-signin">
<h2 class="form-signin-heading">Sign In</h2>
<div style="text-align: center">
But there nothing. No error message or loading.
What's the issue for this ? This should appear when i press makeNewLogin function.
I'm using angular 1.x. And i added waitMe.css and also waitMe.js.
And this is my javascript controller file.
And also this is the corresponding HTML div.
But there nothing. No error message or loading.
What's the issue for this ? This should appear when i press
makeNewLoginfunction.