Commit 4fedbaae 4fedbaaee903e4ade1ae52e142623f09cf79fe03 by Nicolas Perriault

splitting long lines

1 parent 21975038
...@@ -810,7 +810,8 @@ Casper.prototype.getCurrentUrl = function getCurrentUrl() { ...@@ -810,7 +810,8 @@ Casper.prototype.getCurrentUrl = function getCurrentUrl() {
810 * @param String attribute The attribute name to lookup 810 * @param String attribute The attribute name to lookup
811 * @return String The requested DOM element attribute value 811 * @return String The requested DOM element attribute value
812 */ 812 */
813 Casper.prototype.getElementAttribute = Casper.prototype.getElementAttr = function getElementAttr(selector, attribute) { 813 Casper.prototype.getElementAttribute =
814 Casper.prototype.getElementAttr = function getElementAttr(selector, attribute) {
814 "use strict"; 815 "use strict";
815 this.checkStarted(); 816 this.checkStarted();
816 return this.evaluate(function _evaluate(selector, attribute) { 817 return this.evaluate(function _evaluate(selector, attribute) {
......