Skip to content

Instantly share code, notes, and snippets.

@lucnap
lucnap / gist:dcd9454a639e1ea29a2a
Created February 19, 2016 09:20
Check if a javascript object is empty
function isObjectEmpty(obj) {
return Object.keys(obj).length === 0;
}
@lucnap
lucnap / designer.html
Created June 17, 2015 09:21
designer
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../paper-item/paper-item.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;