Yair Even Or
Yair Even Or
I've created a `tests2.html` file: ``` mocha.setup('bdd'); mocha.ui('bdd'); var expect = chai.expect; var should = chai.should(); var assert = chai.assert; describe('foo', function(){ it('bar', function(){ 'a'.should.eql('a'); }) }); mocha.run(); ``` The...
I also now see that `system.stderr.writeLine` doesn't work on CMD or GIT bash... I've changed `mocha-phantomjs-core.js` `fail` function `stderr` to do `stdout` instead. now I get the error: > Likely...
did `npm install slimerjs` just now so I'm using the latest. Their `package.json`: `"version": "0.906.1"` Regarding your last paragraph, I had nothing but hell using phantomjs for running tests (i'm...
I did `npm install` then went to `\node_modules\slimerjs\package.json` scrolled down to `version` and copy pasted it. it's that number. I also thought it was odd, since it says on the...
Changed to `0.9.6` and indeed everything is good, no hanging, and finally things are printed on the terminal. who would have guessed... Thanks :)
Yes I know, you can blame Apple for this, not me :) The drag & drop is a separate script, unrelated to Tagify. You can use any other D&D script...
Yes, you can use any 3rd-party D&D library you wish in order to move tags around. Just remember to call `tagify.updateValueByDOMTags()` afterward every drop.
yeah I know, mac sucks :) I use Windows and am enjoying life tremendously. I have 2 Mac and 2 Windows laptops and I simply cannot work with the the...
Why does't the last one matches anyway? sometimes the user will put a trailing `/` and sometimes not, and it should result in an identical route match, no?
I think internally these functions do both DOM reads and write. in jquery-fastdom there is a function called `readWrite` although it's unclear how it exactly works.