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({
minimumResultsForSearch: Infinity,
templateResult: addUserPic,
templateSelection: addUserPic
});
$('.navbar-toggle').click(function(){
$('.main-menu ul').slideToggle(); $('.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>
...@@ -5,21 +5,39 @@ ...@@ -5,21 +5,39 @@
$('select').select2({ $('select').select2({
minimumResultsForSearch: Infinity minimumResultsForSearch: Infinity
}); });
$('.status-img').select2({
minimumResultsForSearch: Infinity,
templateResult: addUserPic,
templateSelection: addUserPic
});
$('.navbar-toggle').click(function(){ $('.navbar-toggle').click(function(){
$('.main-menu ul').slideToggle(); $('.main-menu ul').slideToggle();
}); });
$('.expand-box span').click(function() { $('.expand-box span').click(function() {
var $el = $(this); var $el = $(this);
$el.parent().parent().next().slideToggle(); $el.parent().parent().next().slideToggle();
}); });
if($(window).width() <= '767'){ if($(window).width() <= '767'){
$('.section-btn .box-btn').attr('value','Proceed'); $('.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){ equalheight = function(container){
var currentTallest = 0, var currentTallest = 0,
...@@ -27,7 +45,6 @@ ...@@ -27,7 +45,6 @@
rowDivs = new Array(), rowDivs = new Array(),
$el, $el,
topPosition = 0; topPosition = 0;
$(container).each(function() { $(container).each(function() {
$el = $(this); $el = $(this);
...@@ -38,7 +55,6 @@ ...@@ -38,7 +55,6 @@
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();
...@@ -47,7 +63,6 @@ ...@@ -47,7 +63,6 @@
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++) { for (currentDiv = 0 ; currentDiv < rowDivs.length ; currentDiv++) {
rowDivs[currentDiv].height(currentTallest); rowDivs[currentDiv].height(currentTallest);
} }
...@@ -64,4 +79,5 @@ ...@@ -64,4 +79,5 @@
equalheight('.eq-height'); equalheight('.eq-height');
equalheight('.eq-second-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