Datasets:

Modalities:
Text
Formats:
json
Languages:
code
Size:
< 1K
Tags:
code
Libraries:
Datasets
pandas
License:
File size: 2,489 Bytes
eb67da4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// Copyright 2012 Square Inc.
//
//    Licensed under the Apache License, Version 2.0 (the "License");
//    you may not use this file except in compliance with the License.
//    You may obtain a copy of the License at
//
//        http://www.apache.org/licenses/LICENSE-2.0
//
//    Unless required by applicable law or agreed to in writing, software
//    distributed under the License is distributed on an "AS IS" BASIS,
//    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//    See the License for the specific language governing permissions and
//    limitations under the License.

// This is a manifest file that'll be compiled into application.js, which will include all the files
// listed below.
//
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
//
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
// the compiled file.
//
// WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
// GO AFTER THE REQUIRES BELOW.
//
//= require jquery
//= require jquery_ujs
//
//= require jquery-cookie
//= require jquery-leanModal
//= require jquery-timers
//
//= require flot/flot
//= require flot/resize
//= require flot/stack
//= require flot/time
//
//= require sh/manifest
//
//= require bootstrap
//
//= require squash_javascript
//= require configure_squash_client
//
//= require accordion
//= require autocomplete
//= require bug_file_formatter
//= require buttons
//= require context
//= require disclosure
//= require dropdown
//= require dynamic_search_field
//= require editor_links
//= require email_alias_form
//= require error_tooltip
//= require feed
//= require flash
//= require form_with_errors
//= require live_update
//= require member_panel
//= require search
//= require smart_form
//= require sortable_table
//= require tabs
//= require utilities
//= require value_inspector
//
//= require aggregation
//= require histogram
//
//= require navbar

$(document).ready(function() {
  // run SyntaxHighlighter on PREs
  SyntaxHighlighter.all();

  // enable leanModal on all modal links
  $("a[rel*=modal]").leanModal({closeButton: '.close'});
  $("button[rel*=modal]").leanModal({closeButton: '.close'});
});

$.ajaxSetup({
  headers: { 'X-CSRF-Token': $('meta[name="csrf-token"]').attr('content') }
});