diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/Conjugator.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Conjugator.js b/lib/Conjugator.js index 5afdf15..d45e1fe 100644 --- a/lib/Conjugator.js +++ b/lib/Conjugator.js @@ -10,7 +10,7 @@ var request = require('request'); var Conjugator = Class({}, "Conjugator")({ prototype : { _baseUrl: "http://www.spanishdict.com/conjugate/", - _selector: ".aa .neoConj tr td", + _selector: ".vtable-word", init : function init(config) { config = config || {}; @@ -28,7 +28,7 @@ var Conjugator = Class({}, "Conjugator")({ return reject(err); } $ = cheerio.load(body); - result = $('.vtable-word')[10]; + result = $(this._selector)[10]; if (!result) { console.log("Verb not found: ", verb); |