Julian Sloman
Julian Sloman
Related to (but not quite the same as) https://github.com/wpengine/phpcompat/issues/67
Updated it some more while actually using it. Found the input couldn't hold enough plugins easily. This doesn't break when using newlines as well, but it does seem to compress...
Solution is easy: go to http://www.csslint.net/ instead. It doesn't have ssl yet.
Would love this very much as well... like was noted in the linked conversation, replacing N spaces with tabs has many edge cases, which is why I'm using something to...
I know this is old, so not sure if you'd see this, but thanks for making this. - Do you know if there's reasons why this wouldn't work for Codecademy,...
That's not a bad idea. Guess that's what JS is for, right? :)
Internet Explorer 9 and lower - really? - Even Microsoft [stopped supporting them](https://venturebeat.com/2016/01/12/microsoft-ends-support-for-ie8-ie9-ie10-and-windows-8/) and according to [caniuse.com](http://caniuse.com) IE 8 + IE 9 together is 0.5 % of global users. However,...
**Things I noticed in your pen** - When I gently drag the images towards the last one the indicator jumps from the 6th to the last one no matter how...
``` recorder=RecordRTC(localStream, { type: 'video' }); recorder.startRecording(); recorder1=RecordRTC(remoteStream, { type: 'video' }); recorder1.startRecording(); //working fine--------------------- recorder.stopRecording(function() { var blob = recorder.getBlob(); console.log(blob); postFiles(blob); }); // but - Recording state should...