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
// ==UserScript== | |
// @name Tailored Fit Fitting Rooms | |
// @namespace https://local.tailoredfit.com | |
// @version 0.8 | |
// @description Schedule a fitting room to be prepared at your favorite stores! | |
// @match https://*.blueandcream.com | |
// @match http://*.blueandcream.com | |
// @match https://www.blueandcream.com | |
// @match http://www.blueandcream.com | |
// @match https://www.blueandcream.com/* |
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
//detect changes to the Hash URL | |
$(window).on('hashchange', function(){ | |
mixpanel.track("pageview", {"url": window.location.href }); | |
}); | |
Ember.Application.initializer({ | |
initialize: function(container, application) { | |
//track the initial page load's location (the user's entry route) | |
mixpanel.track("pageview", {"url": window.location.href }); | |
} |
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
-----> Fetching custom git buildpack... done | |
-----> Go app detected | |
-----> Installing go1.2... done | |
-----> Running: godep go install -tags heroku ./... | |
Db.go:10:5: cannot find package "github.com/garyburd/redigo/redis" in any of: | |
/app/tmp/cache/go1.2/go/src/pkg/github.com/garyburd/redigo/redis (from $GOROOT) | |
/tmp/build_f743effe-0b2b-447f-9872-441080b32a59/.heroku/g/src/github.com/cy137/tfapi/Godeps/_workspace/src/github.com/garyburd/redigo/redis (from $GOPATH) | |
/tmp/build_f743effe-0b2b-447f-9872-441080b32a59/.heroku/g/src/github.com/garyburd/redigo/redis | |
main.go:5:2: cannot find package "github.com/gorilla/pat" in any of: | |
/app/tmp/cache/go1.2/go/src/pkg/github.com/gorilla/pat (from $GOROOT) |
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
.field-validation-valid { | |
display: inline-block; | |
} |
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
//Add this to your Selenium user-extensions.js file | |
Selenium.prototype.doHyperFocus = function(locator) { | |
this.doWindowFocus(); | |
this.doFocus(locator); | |
}; | |
Selenium.prototype.doCompatibleClick = function(locator) { | |
this.doHyperFocus(); | |
this.doClick(locator); |