Skip to content

Commit

Permalink
bs-raw-files-generator.js: use the global directive to define the `bt…
Browse files Browse the repository at this point in the history
…oa` variable.
  • Loading branch information
XhmikosR committed Feb 6, 2014
1 parent 119ed54 commit 5769b77
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion grunt/bs-raw-files-generator.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
/* jshint node: true */
/* global btoa: true */

/*!
* Bootstrap Grunt task for generating raw-files.min.js for the Customizer
* http://getbootstrap.com
* Copyright 2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/

var btoa = require('btoa') // jshint ignore:line
var btoa = require('btoa')
var fs = require('fs')

function getFiles(type) {
Expand Down

0 comments on commit 5769b77

Please sign in to comment.