diff --git a/app/assets/images/slack.png b/app/assets/images/slack.png new file mode 100644 index 00000000..277ec2ba Binary files /dev/null and b/app/assets/images/slack.png differ diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js index c45a0102..65aadbbb 100644 --- a/app/assets/javascripts/application.js +++ b/app/assets/javascripts/application.js @@ -44,5 +44,5 @@ //= require ./src/Metamaps.Import //= require ./src/Metamaps.JIT //= require_directory ./shims -//= require_directory ./require -//= require_directory ./famous +// require_directory ./require +// require_directory ./famous diff --git a/app/assets/javascripts/orderedLibraries/react-dom.js b/app/assets/javascripts/orderedLibraries/react-dom.js new file mode 100644 index 00000000..970e3740 --- /dev/null +++ b/app/assets/javascripts/orderedLibraries/react-dom.js @@ -0,0 +1,42 @@ +/** + * ReactDOM v15.3.0 + * + * Copyright 2013-present, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + */ +// Based off https://github.com/ForbesLindesay/umd/blob/master/template.js +;(function(f) { + // CommonJS + if (typeof exports === "object" && typeof module !== "undefined") { + module.exports = f(require('react')); + + // RequireJS + } else if (typeof define === "function" && define.amd) { + define(['react'], f); + + // + - - -