Ivan Pantic
Ivan Pantic
Hi, I want to create a `tooltips` property that would contain processed error data from corresponding validators (key to key mapping). For that, I need to listen to any change...
Add a limited support for user accounts. A way for the site owner to: - stylize their own comments - do the same for moderators/contributors/friends - prevent anyone else from...
The ability to add a "custom" element handler in the options. ``` javascript var options = { custom: function (elem, options) { if (elem.type === 'tag') { return "fizz\n"; }...
I'm talking about the Queue implementation that is featured multiple times throughout the book. ``` javascript var QueueMaker = function () { var queue = { array: [], head: 0,...
Changes: - Allow setting NULL-s via object. Query builder will now use "IS" operator instead of the (incorrect) "=". - Allow `undefined` properties in objects you provide to WHERE queries....
It seems that save/restore somehow causes Steam game icon files to be deleted from `/home/$user/.local/share/icons/hicolor/$size/apps`. These are files like "`steam_icon_324510.png`". The effect of this is that all game icons on...
Hi, I am trying to configure side buttons on my Logitech MX mouse to perform zoom in / out functionality (CTRL +/-). I got it to be able to zoom...
During the transition to typescript, `createPath` function has changed from this: ``` function createPath(location) { var pathname = location.pathname, search = location.search, hash = location.hash; var path = pathname ||...
I'm having a problem with a setup like this: ``` js grunt.initConfig({ watch: { less_templates: { files: ["dev/styles/**/*.less"], tasks: ["less"] } }, less: { default: { src: "dev/styles/app.less", dest: "public/styles/"...
**Describe the bug** When you initialize socket server, you can either give it an external instance of `HTTPServer`, or let socket.io create its own internal instance. However, in either case,...