This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 1 identify current element in context | |
// 2 'build' carousel structure | |
// 3 display next/prev buttons | |
var $currentEl = $('#main_product_image'), | |
$mainImageLink = $('#main_product_large_image'), | |
key = $currentEl.attr('src'), | |
$elIncontext = $('li[data-medium-img="' + key + '"]'), | |
$parentEl = $elIncontext.parent('ul'), | |
$allImages = $parentEl.find('li'), | |
totalEls = $allImages.length, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 1 identify current element in context | |
// 2 'build' carousel structure | |
// 3 display next/prev buttons | |
var $currentEl = $('#main_product_image'), | |
$mainImageLink = $('#main_product_large_image'), | |
key = $currentEl.attr('src'), | |
$elIncontext = $('li[data-medium-img="' + key + '"]'), | |
$parentEl = $elIncontext.parent('ul'), | |
$allImages = $parentEl.find('li'), | |
totalEls = $allImages.length, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/css/style.css b/css/style.css | |
index 8d76252..3ce66b3 100644 | |
--- a/css/style.css | |
+++ b/css/style.css | |
@@ -74,9 +74,9 @@ h1,h2,h3,h4 { font-family:Helvetica,Arial,sans-serif; text-transform:uppercase; | |
/* Shop */ | |
#shop { padding:20px 0 40px; text-align:left; } | |
- #shop.blur { height:250px; } | |
- #shop.blur:hover { height:290px; transition:height .3s; -webkit-transition:height .3s; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
leopic-Latitude-E6520:lalista (master)➔ git push | |
Enter passphrase for key '/home/leopic/.ssh/id_rsa': | |
Counting objects: 5, done. | |
Delta compression using up to 8 threads. | |
Compressing objects: 100% (2/2), done. | |
Writing objects: 100% (3/3), 304 bytes, done. | |
Total 3 (delta 1), reused 0 (delta 0) | |
-----> Node.js app detected | |
-----> Resolving engine versions | |
Using Node.js version: 0.8.19 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
leopic-Latitude-E6520:app (develop)➔ git pull | |
Already up-to-date. | |
leopic-Latitude-E6520:app (develop)➔ git push | |
Counting objects: 85, done. | |
Delta compression using up to 8 threads. | |
Compressing objects: 100% (51/51), done. | |
Writing objects: 100% (53/53), 39.40 KiB, done. | |
Total 53 (delta 26), reused 4 (delta 0) | |
Pushed to non-master branch, skipping build. | |
To [email protected]:husker.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=== Arreglos | |
== Cocina | |
- Pintura en la pared | |
- Bisagra en el mueble, encima de la cocina | |
- Huecos | |
- Hueco en el cielo raso | |
== Oficina | |
- Huecos |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
selenium.driverType=chrome | |
webdriver.chrome.driver=/home/leopic/Apps/chromedriver | |
webdriver.chrome.disableImages=true | |
#test.environment.application.url=http://dev.backcountry.com:8080/Store/home.jsp | |
test.environment.application.url=http://system2.fqa.backcountry.com | |
solr.init=false | |
selenium.default.timeout=12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package Main; | |
public class Computadora { | |
String nombre = "Computadora desconocida"; | |
int precio = 0; | |
public String getNombre() { | |
return nombre; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DatabaseError at / | |
no such table: routes_terrain | |
Request Method: GET | |
Request URL: http://127.0.0.1:8000/ | |
Django Version: 1.4 | |
Exception Type: DatabaseError | |
Exception Value: | |
no such table: routes_terrain | |
Exception Location: /usr/local/lib/python2.7/dist-packages/django/db/backends/sqlite3/base.py in execute, line 337 | |
Python Executable: /usr/bin/python |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/qa-automation-tests/src/test/java/com/backcountry/tests/retail/pdp/RecommendationsBoxTest.java b/qa-automation-tests/src/test/java/com/backcountry/tests/retail/pdp/RecommendationsBoxTest.java | |
index 16e6fde..91c976e 100644 | |
--- a/qa-automation-tests/src/test/java/com/backcountry/tests/retail/pdp/RecommendationsBoxTest.java | |
+++ b/qa-automation-tests/src/test/java/com/backcountry/tests/retail/pdp/RecommendationsBoxTest.java | |
@@ -20,10 +20,15 @@ public class RecommendationsBoxTest extends RetailBaseTestCase { | |
@Test(dataProvider = "getTestData", dataProviderClass = FileDataProvider.class) | |
@DataProviderArguments("dataFilePrefix=testdata/retail/%s/PdpTest tableName=POOSProductData") | |
- public void verifyRecommendationsBox(String productUrl) { | |
+ public void verifyRecommendationsBox(String productUrl, String productUrl1, String productUrl2, String productUrl3) { |