added chrome as global

This commit is contained in:
Stephen Rodriguez
2015-07-14 13:14:46 -04:00
parent e070b884c3
commit b25cebbca5
5 changed files with 5 additions and 5 deletions

View File

@@ -6,5 +6,5 @@
"undef": true,
"unused": true,
"trailing": true,
"predef": ["chrome"]
"predef": [ "chrome" ]
}

View File

@@ -1,4 +1,4 @@
/** global chrome */
/* global chrome */
var React = require('react');

View File

@@ -1,4 +1,4 @@
/** global chrome */
/* global chrome */
var React = require('react');
var ReactAddons = require('react/addons');

View File

@@ -1,4 +1,4 @@
/** global chrome */
/* global chrome */
var React = require("react");
var $ = require('jquery');

View File

@@ -1,4 +1,4 @@
/** @jsx React.DOM */
/* global chrome */
/* This is a fix for Bootstrap requiring jQuery */
global.jQuery = require('jquery');