Skip to content

Instantly share code, notes, and snippets.

@wrumsby
Created July 2, 2013 08:25
Show Gist options
  • Save wrumsby/5907620 to your computer and use it in GitHub Desktop.
Save wrumsby/5907620 to your computer and use it in GitHub Desktop.
AMD module definition
define(['jquery'], function ($) {
'use strict';
var Bolderiser = function ();
Bolderiser.prototype = {
embolden: function (el) {
var $el = $(el);
$el.css('font-weight', 'bold');
}
};
return Bolderiser;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment