+
+
+
+
diff --git a/SolarPower/wwwroot/js/bower_components/jquery-table2excel/dist/jquery.table2excel.js b/SolarPower/wwwroot/js/bower_components/jquery-table2excel/dist/jquery.table2excel.js
new file mode 100644
index 0000000..c859492
--- /dev/null
+++ b/SolarPower/wwwroot/js/bower_components/jquery-table2excel/dist/jquery.table2excel.js
@@ -0,0 +1,244 @@
+/*
+ * jQuery table2excel - v1.1.1
+ * jQuery plugin to export an .xls file in browser from an HTML table
+ * https://github.com/rainabba/jquery-table2excel
+ *
+ * Made by rainabba
+ * Under MIT License
+ */
+/*
+ * jQuery table2excel - v1.1.1
+ * jQuery plugin to export an .xls file in browser from an HTML table
+ * https://github.com/rainabba/jquery-table2excel
+ *
+ * Made by rainabba
+ * Under MIT License
+ */
+//table2excel.js
+;(function ( $, window, document, undefined ) {
+ var pluginName = "table2excel",
+
+ defaults = {
+ exclude: ".noExl",
+ name: "Table2Excel",
+ filename: "table2excel",
+ fileext: ".xls",
+ exclude_img: true,
+ exclude_links: true,
+ exclude_inputs: true
+ };
+
+ // The actual plugin constructor
+ function Plugin ( element, options ) {
+ this.element = element;
+ // jQuery has an extend method which merges the contents of two or
+ // more objects, storing the result in the first object. The first object
+ // is generally empty as we don't want to alter the default options for
+ // future instances of the plugin
+ //
+ this.settings = $.extend( {}, defaults, options );
+ this._defaults = defaults;
+ this._name = pluginName;
+ this.init();
+ }
+
+ Plugin.prototype = {
+ init: function () {
+ var e = this;
+
+ var utf8Heading = "";
+ e.template = {
+ head: "" + utf8Heading + "",
+ table: {
+ head: "