Added custom scroll bars and separated the table header from the tables for Sales and the Graphs tables.

This commit is contained in:
Wynne Crisman
2017-10-08 08:56:15 -07:00
parent 210517a5c2
commit b5ac9fd249
44 changed files with 4939 additions and 245 deletions

View File

@@ -0,0 +1,11 @@
// Import Tinytest from the tinytest Meteor package.
import { Tinytest } from "meteor/tinytest";
// Import and rename a variable exported by jquery-custom-scrollbar.js.
import { name as packageName } from "meteor/wcrisman:jquery-custom-scrollbar";
// Write your tests here!
// Here is an example.
Tinytest.add('jquery-custom-scrollbar - example', function (test) {
test.equal(packageName, "jquery-custom-scrollbar");
});