Skip to content

Instantly share code, notes, and snippets.

@steelywing
steelywing / jquery.draggable.js
Last active August 29, 2015 13:57
jQuery draggable plugin
// jQuery draggable plugin
(function($) {
$.fn.draggable = function(options) {
var $handle = this,
$draggable = this;
options = $.extend({}, {
handle: null,
// allow children to be a handle
handleChildren: true,
@steelywing
steelywing / google-translate-tooltip.user.js
Last active October 22, 2023 16:18
google translate tooltip for firefox & chrome
// ==UserScript==
// @name Google Translate Tooltip
// @namespace steely.wing
// @version 1.10
// @description Translates selected text into a tooltip.
// @license GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html
// @copyright 2014, Wing Leong (http://steelywing.iblogger.org/)
// @include *
// @require http://code.jquery.com/jquery-2.1.0.min.js
// @grant GM_getValue
@steelywing
steelywing / checkbox.less
Created August 30, 2013 14:22
css checkbox
input[type="checkbox"].checkbox {
// basic checkbox style
display: none !important;
+ label {
cursor: pointer;
display: inline-block;
}
// lock style