Major changes to the structure of pages to utilize the flex layout system.

This commit is contained in:
Wynne Crisman
2016-11-19 19:39:02 -08:00
parent 46ef9680c3
commit 4315418aa1
64 changed files with 3590 additions and 16015 deletions

View File

@@ -1,8 +1,11 @@
"use strict";
//
//A dropdown menu. Pass it a container and an array of data, and it will build the button, caret, and list of selectable elements inside the container.
//
(function($) {
var Dropdown = function($element, data, options) {
var _this = this
var _this = this;
var textSpan = $("<span>" + options.defaultText + "</span>");
this.$element = $element;