I hereby claim:
- I am clintconklin on github.
- I am clintconklin (https://keybase.io/clintconklin) on keybase.
- I have a public key whose fingerprint is CC28 882B 4838 ADE3 E352 FB5C 2411 6444 A2D6 270A
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| /* | |
| Extension of bootstrap-popover | |
| - adds a close button | |
| - if a title isn't initially present, the h3.popover-title element is removed; in can, however be readded via data('popoverextended').options.title | |
| - set once post-init: include an addClass option to add extra classes to the popover div | |
| - set once post-init: include a addCss option and pass an object in jquery's css format (e.g. "{ 'width': '550px' }") to have it applied to the popover div | |
| */ | |
| !function ($) { | |
| "use strict"; // jshint ;_; |
| /* | |
| options: | |
| - datasource (requred): where to fetch the json data from | |
| - bounds (required): the bounds option should come in like so: | |
| { | |
| 'lat': { | |
| 'from': 36.32, | |
| 'to': 39.28 | |
| }, |
| module.exports = function(grunt) { | |
| var matches = grunt.file.expand('scripts/template-scripts/**/index.js'); | |
| var requirejsOptions = {}; | |
| if (matches.length > 0) { | |
| for (var x = 0; x < matches.length; x++) { | |
| var path = matches[x].replace(/\/index\.js/, ''); | |
| requirejsOptions['task' + x] = { | |
| "options": { | |
| "baseUrl": "./", |