mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-28 00:40:07 +02:00
less globals in litning
This commit is contained in:
parent
10d9faa7da
commit
26c04c7e0e
4 changed files with 7 additions and 3 deletions
3
grunt.js
3
grunt.js
|
@ -78,9 +78,6 @@ module.exports = function(grunt) {
|
|||
debug: true
|
||||
},
|
||||
globals: {
|
||||
_: true,
|
||||
Backbone: true,
|
||||
'$': true,
|
||||
Raphael: true,
|
||||
require: true,
|
||||
console: true,
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
var _ = require('underscore');
|
||||
|
||||
var toGlobalize = {
|
||||
Tree: require('../visuals/tree'),
|
||||
Visuals: require('../visuals'),
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
var _ = require('underscore');
|
||||
var Backbone = require('backbone');
|
||||
|
||||
var CommandEntryCollection = require('../models/collections').CommandEntryCollection;
|
||||
var Main = require('../app');
|
||||
var Command = require('../models/commandModel').Command;
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
var GitError = require('../util/errors').GitError;
|
||||
var _ = require('underscore');
|
||||
var Backbone = require('backbone');
|
||||
|
||||
var InteractiveRebaseView = Backbone.View.extend({
|
||||
tagName: 'div',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue