summaryrefslogtreecommitdiff
path: root/frontend/site/app/revisions.js
blob: 8d3b16e939670405a772f241744d413d1c958da4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
 * In case you need to, you can make last-minute modifications to the
 * graph before it's loaded.  This might be preferable in case there
 * are certain edits that need to be applied conditionally.
 */

import { isMobile } from "app/utils"

export default function reviseGraph (graph) {
  if (isMobile) {
    //
  }
  return graph
}