Skip to content

Instantly share code, notes, and snippets.

@ace4gi
ace4gi / nw-js-cookies.js
Last active October 11, 2019 01:52 — forked from adriancooney/nw-js-cookies.js
Quick snippet to display cookie in NW.js (node-webkit) in a sweet console table.
/**
모든 쿠키 확인
*/
require("nw.gui").Window.get().cookies.getAll({}, console.table.bind(console));
/**
쿠키 값 수정
*/
nw.Window.get().cookies.set({
url: "https://aaa",
@ace4gi
ace4gi / imagesLoaded
Last active August 29, 2015 14:00 — forked from paulirish/README.md
// $('img.photo',this).imagesLoaded(myFunction)
// execute a callback when all images have loaded.
// needed because .load() doesn't work on cached images
// mit license. paul irish. 2010.
// webkit fix from Oren Solomianik. thx!
// callback function is passed the last image to load
// as an argument, and the collection as `this`