This file contains hidden or 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
Apache License | |
Version 2.0, January 2004 | |
http://www.apache.org/licenses/ | |
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION | |
1. Definitions. |
This file contains hidden or 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
# spec/support/axe.rb | |
module Capybara | |
class Session | |
alias_method :execute_async_script, :evaluate_async_script | |
end | |
module Cuprite | |
class Browser | |
alias_method :execute_async_script, :evaluate_async |
This file contains hidden or 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
function NamedValuesTransformer(name, fields) { | |
this.name = name | |
this.fields = fields | |
} | |
NamedValuesTransformer.prototype.toAttachment = function() { | |
var self = this | |
var fields = Object.keys(this.fields).map(function(key) { return new FieldTransformer(key, self.fields[key]).toField() }) | |
return({fallback: "New Google Forms Contact", title: this.name, fields: fields}) | |
} |
OlderNewer