Commit 4cb83098 by chenith Committed by Harsh Shah

Update website styles.

parent 8cd9d7f8
<script> <script>
$(document).ready(function () { $(document).ready(function(){
$('select').select2({ $('select').select2({
minimumResultsForSearch: Infinity minimumResultsForSearch: Infinity
}); });
$('.navbar-toggle').click(function () { $('.status-img').select2({
$('.main-menu ul').slideToggle(); minimumResultsForSearch: Infinity,
}); templateResult: addUserPic,
templateSelection: addUserPic
});
$('.navbar-toggle').click(function(){
$('.main-menu ul').slideToggle();
});
$('.expand-box span').click(function() {
var $el = $(this);
$el.parent().parent().next().slideToggle();
});
if($(window).width() <= '767'){
$('.section-btn .box-btn').attr('value','Proceed');
$(".app-out-btn .box-btn").text('Verify and proceed')
}
});
function addUserPic (opt) {
if (!opt.id) {
return opt.text;
}
var optimage = $(opt.element).data('image');
if(!optimage){
return opt.text;
} else {
var $opt = $(
'<span class="userName"><img src="' + optimage + '" class="userPic" /> ' + $(opt.element).text() + '</span>'
);
return $opt;
}
};
equalheight = function(container){
var currentTallest = 0,
currentRowStart = 0,
rowDivs = new Array(),
$el,
topPosition = 0;
$(container).each(function() {
$el = $(this);
$($el).height('auto')
topPostion = $el.position().top;
if (currentRowStart != topPostion) {
for (currentDiv = 0 ; currentDiv < rowDivs.length ; currentDiv++) {
rowDivs[currentDiv].height(currentTallest);
}
rowDivs.length = 0; // empty the array
currentRowStart = topPostion;
currentTallest = $el.height();
rowDivs.push($el);
} else {
rowDivs.push($el);
currentTallest = (currentTallest < $el.height()) ? ($el.height()) : (currentTallest);
}
for (currentDiv = 0 ; currentDiv < rowDivs.length ; currentDiv++) {
rowDivs[currentDiv].height(currentTallest);
}
});
}
$(window).load(function() {
equalheight('.eq-height');
equalheight('.eq-second-height');
});
$(window).resize(function(){
equalheight('.eq-height');
equalheight('.eq-second-height');
}); });
</script> </script>
...@@ -2,66 +2,82 @@ ...@@ -2,66 +2,82 @@
<script> <script>
$(document).ready(function(){ $(document).ready(function(){
$('select').select2({ $('select').select2({
minimumResultsForSearch: Infinity minimumResultsForSearch: Infinity
}); });
$('.status-img').select2({
$('.navbar-toggle').click(function(){ minimumResultsForSearch: Infinity,
$('.main-menu ul').slideToggle(); templateResult: addUserPic,
}); templateSelection: addUserPic
});
$('.expand-box span').click(function() { $('.navbar-toggle').click(function(){
var $el = $(this); $('.main-menu ul').slideToggle();
$el.parent().parent().next().slideToggle(); });
}); $('.expand-box span').click(function() {
var $el = $(this);
if($(window).width() <= '767'){ $el.parent().parent().next().slideToggle();
$('.section-btn .box-btn').attr('value','Proceed'); });
} if($(window).width() <= '767'){
}); $('.section-btn .box-btn').attr('value','Proceed');
$(".app-out-btn .box-btn").text('Verify and proceed')
}
});
equalheight = function(container){ function addUserPic (opt) {
if (!opt.id) {
return opt.text;
}
var optimage = $(opt.element).data('image');
if(!optimage){
return opt.text;
} else {
var $opt = $(
'<span class="userName"><img src="' + optimage + '" class="userPic" /> ' + $(opt.element).text() + '</span>'
);
return $opt;
}
};
var currentTallest = 0, equalheight = function(container){
currentRowStart = 0,
rowDivs = new Array(),
$el,
topPosition = 0;
$(container).each(function() { var currentTallest = 0,
currentRowStart = 0,
rowDivs = new Array(),
$el,
topPosition = 0;
$(container).each(function() {
$el = $(this); $el = $(this);
$($el).height('auto') $($el).height('auto')
topPostion = $el.position().top; topPostion = $el.position().top;
if (currentRowStart != topPostion) { if (currentRowStart != topPostion) {
for (currentDiv = 0 ; currentDiv < rowDivs.length ; currentDiv++) { for (currentDiv = 0 ; currentDiv < rowDivs.length ; currentDiv++) {
rowDivs[currentDiv].height(currentTallest); rowDivs[currentDiv].height(currentTallest);
} }
rowDivs.length = 0; // empty the array
rowDivs.length = 0; // empty the array currentRowStart = topPostion;
currentRowStart = topPostion; currentTallest = $el.height();
currentTallest = $el.height(); rowDivs.push($el);
rowDivs.push($el); } else {
} else { rowDivs.push($el);
rowDivs.push($el); currentTallest = (currentTallest < $el.height()) ? ($el.height()) : (currentTallest);
currentTallest = (currentTallest < $el.height()) ? ($el.height()) : (currentTallest); }
} for (currentDiv = 0 ; currentDiv < rowDivs.length ; currentDiv++) {
rowDivs[currentDiv].height(currentTallest);
for (currentDiv = 0 ; currentDiv < rowDivs.length ; currentDiv++) { }
rowDivs[currentDiv].height(currentTallest);
}
});
}
$(window).load(function() {
equalheight('.eq-height');
equalheight('.eq-second-height');
}); });
}
$(window).load(function() {
equalheight('.eq-height');
equalheight('.eq-second-height');
});
$(window).resize(function(){
equalheight('.eq-height');
equalheight('.eq-second-height');
});
$(window).resize(function(){
equalheight('.eq-height');
equalheight('.eq-second-height');
});
</script> </script>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment