foobar, foo, bar, baz, qux, quux, corge, grault, garply, waldo, fred, plugh, xyzzy, thud
editor.addKeyMap({ | |
// bold | |
'Ctrl-B': function(cm) { | |
var s = cm.getSelection(), | |
t = s.slice(0, 2) === '**' && s.slice(-2) === '**'; | |
cm.replaceSelection(t ? s.slice(2, -2) : '**' + s + '**', 'around'); | |
}, | |
// italic | |
'Ctrl-I': function(cm) { | |
var s = cm.getSelection(), |
/*! JavaScript Module Pattern by Taufik Nurrohman <https://github.com/tovic> */ | |
(function(win, doc, NS) { | |
(function($) { | |
// module version | |
$.version = '1.0.0'; | |
// collect all instance(s) |
// see blog post: http://www.hiddentao.com/archives/2013/07/08/generate-overridable-getters-and-setters-in-javascript/ | |
Function.prototype.generateProperty = function(name, options) { | |
// internal member variable name | |
var privateName = '__' + name; | |
options = options || {}; | |
options.get = ('undefined' === typeof options.get ? true : options.get ); | |
options.set = ('undefined' === typeof options.set ? true : options.set ); | |
// pre-initialise the internal variable? |
(function() { | |
// Key maps for the deprecated `KeyboardEvent.keyCode` | |
var keys = { | |
// control | |
8: 'backspace', | |
9: 'tab', | |
13: 'enter', | |
16: 'shift', | |
17: 'control', |
<?php | |
/*! | |
* ======================================================= | |
* Author : Taufik Nurrohman | |
* URL : https://github.com/taufik-nurrohman | |
* License : MIT | |
* ======================================================= | |
* | |
* -- CODE: ---------------------------------------------- |
I have always struggled with getting all the various share buttons from Facebook, Twitter, Google Plus, Pinterest, etc to align correctly and to not look like a tacky explosion of buttons. Seeing a number of sites rolling their own share buttons with counts, for example The Next Web I decided to look into the various APIs on how to simply return the share count.
If you want to roll up all of these into a single jQuery plugin check out Sharrre
Many of these API calls and methods are undocumented, so anticipate that they will change in the future. Also, if you are planning on rolling these out across a site I would recommend creating a simple endpoint that periodically caches results from all of the APIs so that you are not overloading the services will requests.
/** | |
* Cross Browser helper to addEventListener. | |
* | |
* @param {HTMLElement} obj The Element to attach event to. | |
* @param {string} evt The event that will trigger the binded function. | |
* @param {function(event)} fnc The function to bind to the element. | |
* @return {boolean} true if it was successfuly binded. | |
*/ | |
var cb_addEventListener = function(obj, evt, fnc) { | |
// W3C model |
<!DOCTYPE html> | |
<!-- This is the shortest Image Uploader ever :) | |
And you can even make it shorter if you don't | |
want all the drag'n drop thing. --> | |
<!-- | |
AUTHOR: @paulrouget <[email protected]> | |
LICENSE: |