Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into branch
Browse files Browse the repository at this point in the history
  • Loading branch information
sowmya authored and sowmya committed Dec 23, 2014
2 parents d8b9536 + 0742410 commit c71f45d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
3 changes: 1 addition & 2 deletions app/views/filter.scala.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<!-- Template for Filters -->
<div class="jumbotron" style="
width: 300px; padding:30px;
">
width: 300px; padding:30px;">
<div class="container">
<div class="control-group pre-scrollable" style="height:150px; border:1px solid #628baf; padding:5px; border-radius:5px">
<label class="control-label" for="designers" style="font-weight: bold; text-decoration: underline; text-align: center">DESIGNERS</label>
Expand Down
6 changes: 3 additions & 3 deletions app/views/product.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
@header()
@navigation()
@recom(finallist)
<div class="container" style="margin:0px;margin-left:50px">
<div class="container-fluid" style="margin:0px;margin-left:50px">
<div class="row" style="width:1600px">
<div class="col-lg-8">
<div class="col-xs-6">
<img src="data:image/jpg;base64,@p.photo" hspace=20px vspace=20px>
</div>
<div class="col-lg-4" align=right vspace=20px hspace=20px>
<div class="col-xs-3" align=right vspace=20px hspace=20px>
<div class="jumbotron" style="margin-top: 200px;
border: 1px solid #ccc;
background-color: lightgrey;margin-bottom: 0px;margin-left: 250px;width: 520px;text-align: center">
Expand Down
5 changes: 2 additions & 3 deletions app/views/recom.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -93,20 +93,19 @@
</div>
<!-- Slides Container -->

<div u="slides" style="cursor: move; position: absolute; left: 0px; top: 0px; width: 980px; height: 200px; overflow: hidden;">
<div u="slides" style="cursor: move; position: absolute; left: 0px; top: 0px; width: 100%; height: 200px; overflow: hidden;">
@for(product1 <- products) {


<div class="col-sm-4 thumb" style="text-align: center">
<a href="#" >
<img class="img-responsive" src="data:image/jpg;base64,@product1.photo" height=200px width=250px alt="renderedIncorrectly">
<img class="img-responsive" src="data:image/jpg;base64,@product1.photo" height=200px width=250px id=@product1.prod_id alt="renderedIncorrectly">
</a>
<label>@product1.merchant</label>
<input class="rating" data-size="xxs" data-disabled="true" value=@product1.rating>
<label>[email protected]</label>
</div>
<script>
var i = @product1.prod_id;
$("#@product1.prod_id").click(function() {
var url = window.location.href.split("/")[0];
window.location.href = url + "/product?p=" + @product1.prod_id;
Expand Down

0 comments on commit c71f45d

Please sign in to comment.