├── GUIDELINES.md ├── README.md ├── admin ├── add-category.php ├── assets │ ├── css │ │ ├── main-responsive.css │ │ ├── main.css │ │ ├── print.css │ │ ├── rtl-version.css │ │ ├── theme_black_and_white.css │ │ ├── theme_dark.css │ │ ├── theme_green.css │ │ ├── theme_light.css │ │ └── theme_navy.css │ ├── fonts │ │ ├── fonts │ │ │ ├── clip-font.eot │ │ │ ├── clip-font.svg │ │ │ ├── clip-font.ttf │ │ │ └── clip-font.woff │ │ ├── lte-ie7.js │ │ └── style.css │ ├── js │ │ ├── charts.js │ │ ├── form-calendar.js │ │ ├── form-dropzone.js │ │ ├── form-elements.js │ │ ├── form-image-cropping.js │ │ ├── form-validation.js │ │ ├── form-wizard.js │ │ ├── index.js │ │ ├── login.js │ │ ├── main.js │ │ ├── maps.js │ │ ├── pages-gallery.js │ │ ├── pages-user-profile.js │ │ ├── table-data.js │ │ ├── ui-animation.js │ │ ├── ui-buttons.js │ │ ├── ui-elements.js │ │ ├── ui-modals.js │ │ ├── ui-nestable.js │ │ ├── ui-sliders.js │ │ ├── ui-treeview.js │ │ ├── utility-coming-soon.js │ │ └── utility-error404.js │ ├── less │ │ └── styles.less │ └── plugins │ │ ├── DataTables │ │ ├── Readme.txt │ │ ├── component.json │ │ ├── docs │ │ │ ├── 34cdb56b2c.html │ │ │ ├── DataTable.defaults.columns.html │ │ │ ├── DataTable.defaults.html │ │ │ ├── DataTable.defaults.oLanguage.html │ │ │ ├── DataTable.defaults.oLanguage.oAria.html │ │ │ ├── DataTable.defaults.oLanguage.oPaginate.html │ │ │ ├── DataTable.defaults.oSearch.html │ │ │ ├── DataTable.ext.html │ │ │ ├── DataTable.html │ │ │ ├── DataTable.models.ext.html │ │ │ ├── DataTable.models.html │ │ │ ├── DataTable.models.oColumn.html │ │ │ ├── DataTable.models.oRow.html │ │ │ ├── DataTable.models.oSearch.html │ │ │ ├── DataTable.models.oSettings.html │ │ │ ├── DataTable.models.oSettings.oBrowser.html │ │ │ ├── DataTable.models.oSettings.oFeatures.html │ │ │ ├── DataTable.models.oSettings.oLanguage.html │ │ │ ├── DataTable.models.oSettings.oPreviousSearch.html │ │ │ ├── DataTable.models.oSettings.oScroll.html │ │ │ ├── index.html │ │ │ └── media │ │ │ │ ├── css │ │ │ │ ├── doc.css │ │ │ │ ├── shCore.css │ │ │ │ └── shThemeDataTables.css │ │ │ │ ├── images │ │ │ │ ├── arrow.jpg │ │ │ │ ├── arrow.png │ │ │ │ └── extended.png │ │ │ │ ├── js │ │ │ │ ├── doc.js │ │ │ │ ├── jquery.js │ │ │ │ ├── shBrushJScript.js │ │ │ │ └── shCore.js │ │ │ │ └── license │ │ │ │ └── Syntax Highlighter │ │ ├── examples │ │ │ ├── advanced_init │ │ │ │ ├── column_render.html │ │ │ │ ├── complex_header.html │ │ │ │ ├── defaults.html │ │ │ │ ├── dom_multiple_elements.html │ │ │ │ ├── dom_toolbar.html │ │ │ │ ├── dt_events.html │ │ │ │ ├── events_live.html │ │ │ │ ├── events_post_init.html │ │ │ │ ├── events_pre_init.html │ │ │ │ ├── footer_callback.html │ │ │ │ ├── highlight.html │ │ │ │ ├── html_sort.html │ │ │ │ ├── language_file.html │ │ │ │ ├── length_menu.html │ │ │ │ ├── localstorage.html │ │ │ │ ├── row_callback.html │ │ │ │ ├── row_grouping.html │ │ │ │ └── sorting_control.html │ │ │ ├── ajax │ │ │ │ ├── ajax.html │ │ │ │ ├── custom_data_property.html │ │ │ │ ├── deep.html │ │ │ │ ├── defer_render.html │ │ │ │ ├── null_data_source.html │ │ │ │ ├── objects.html │ │ │ │ ├── objects_subarrays.html │ │ │ │ └── sources │ │ │ │ │ ├── array_only.txt │ │ │ │ │ ├── arrays.txt │ │ │ │ │ ├── arrays_subobjects.txt │ │ │ │ │ ├── custom_prop.txt │ │ │ │ │ ├── deep.txt │ │ │ │ │ ├── objects.txt │ │ │ │ │ └── objects_subarrays.txt │ │ │ ├── api │ │ │ │ ├── add_row.html │ │ │ │ ├── api_in_init.html │ │ │ │ ├── counter_column.html │ │ │ │ ├── editable.html │ │ │ │ ├── form.html │ │ │ │ ├── highlight.html │ │ │ │ ├── multi_filter.html │ │ │ │ ├── multi_filter_select.html │ │ │ │ ├── regex.html │ │ │ │ ├── row_details.html │ │ │ │ ├── select_row.html │ │ │ │ ├── select_single_row.html │ │ │ │ ├── show_hide.html │ │ │ │ └── tabs_and_scrolling.html │ │ │ ├── basic_init │ │ │ │ ├── alt_pagination.html │ │ │ │ ├── base.html │ │ │ │ ├── base_themeroller.html │ │ │ │ ├── complex_header.html │ │ │ │ ├── dom.html │ │ │ │ ├── filter_only.html │ │ │ │ ├── flexible_width.html │ │ │ │ ├── hidden_columns.html │ │ │ │ ├── language.html │ │ │ │ ├── multi_col_sort.html │ │ │ │ ├── multiple_tables.html │ │ │ │ ├── scroll_x.html │ │ │ │ ├── scroll_xy.html │ │ │ │ ├── scroll_y.html │ │ │ │ ├── scroll_y_infinite.html │ │ │ │ ├── scroll_y_theme.html │ │ │ │ ├── state_save.html │ │ │ │ ├── table_sorting.html │ │ │ │ ├── themes.html │ │ │ │ └── zero_config.html │ │ │ ├── data_sources │ │ │ │ ├── ajax.html │ │ │ │ ├── dom.html │ │ │ │ ├── js_array.html │ │ │ │ └── server_side.html │ │ │ ├── examples_support │ │ │ │ ├── data.sql │ │ │ │ ├── de_DE.txt │ │ │ │ ├── details_close.png │ │ │ │ ├── details_open.png │ │ │ │ ├── editable_ajax.php │ │ │ │ ├── index.html │ │ │ │ ├── infiniteScroll.php │ │ │ │ ├── jquery-ui-tabs.js │ │ │ │ ├── jquery.jeditable.js │ │ │ │ ├── jquery.tooltip.css │ │ │ │ ├── jquery.tooltip.js │ │ │ │ ├── syntax │ │ │ │ │ ├── css │ │ │ │ │ │ └── shCore.css │ │ │ │ │ ├── images │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ └── extended.png │ │ │ │ │ ├── js │ │ │ │ │ │ └── shCore.js │ │ │ │ │ └── license │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ └── themes │ │ │ │ │ ├── smoothness │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ └── jquery-ui-1.8.4.custom.css │ │ │ │ │ └── ui-lightness │ │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ └── jquery-ui-1.8.4.custom.css │ │ │ ├── index.html │ │ │ ├── plug-ins │ │ │ │ ├── dom_sort.html │ │ │ │ ├── html_sort.html │ │ │ │ ├── paging_plugin.html │ │ │ │ ├── plugin_api.html │ │ │ │ ├── range_filtering.html │ │ │ │ ├── sorting_plugin.html │ │ │ │ └── sorting_sType.html │ │ │ └── server_side │ │ │ │ ├── custom_vars.html │ │ │ │ ├── defer_loading.html │ │ │ │ ├── editable.html │ │ │ │ ├── ids.html │ │ │ │ ├── jsonp.html │ │ │ │ ├── object_data.html │ │ │ │ ├── pipeline.html │ │ │ │ ├── post.html │ │ │ │ ├── row_details.html │ │ │ │ ├── scripts │ │ │ │ ├── custom_data_property.php │ │ │ │ ├── details_col.php │ │ │ │ ├── filter_col.php │ │ │ │ ├── id.php │ │ │ │ ├── id_jsonp.php │ │ │ │ ├── jsonp.php │ │ │ │ ├── objects.php │ │ │ │ ├── objects_jsonp.php │ │ │ │ ├── post.php │ │ │ │ └── server_processing.php │ │ │ │ ├── select_rows.html │ │ │ │ └── server_side.html │ │ ├── extras │ │ │ ├── AutoFill │ │ │ │ ├── callbacks.html │ │ │ │ ├── columns.html │ │ │ │ ├── index.html │ │ │ │ ├── inputs.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ └── AutoFill.css │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── 02ff627f40.html │ │ │ │ │ │ ├── 36456bf45f.html │ │ │ │ │ │ ├── 47cac4f141.html │ │ │ │ │ │ ├── 5a72546831.html │ │ │ │ │ │ ├── 8ee4007a12.html │ │ │ │ │ │ ├── AutoFill.html │ │ │ │ │ │ ├── a69b02bcf2.html │ │ │ │ │ │ ├── b44bd4821a.html │ │ │ │ │ │ ├── c6945fdb4a.html │ │ │ │ │ │ ├── global.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── filler.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── AutoFill.js │ │ │ │ │ │ ├── AutoFill.min.js │ │ │ │ │ │ └── AutoFill.min.js.gz │ │ │ │ └── scrolling.html │ │ │ ├── ColReorder │ │ │ │ ├── alt_insert.html │ │ │ │ ├── col_filter.html │ │ │ │ ├── colvis.html │ │ │ │ ├── fixedcolumns.html │ │ │ │ ├── fixedheader.html │ │ │ │ ├── index.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ └── ColReorder.css │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── 46848f6f3b.html │ │ │ │ │ │ ├── 4f1246032c.html │ │ │ │ │ │ ├── ColReorder.html │ │ │ │ │ │ ├── a69b02bcf2.html │ │ │ │ │ │ ├── global.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── insert.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── ColReorder.js │ │ │ │ │ │ ├── ColReorder.min.js │ │ │ │ │ │ └── ColReorder.min.js.gz │ │ │ │ ├── predefined.html │ │ │ │ ├── reset.html │ │ │ │ ├── scrolling.html │ │ │ │ ├── server_side.html │ │ │ │ ├── state_save.html │ │ │ │ └── theme.html │ │ │ ├── ColVis │ │ │ │ ├── exclude_columns.html │ │ │ │ ├── index.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ ├── ColVis.css │ │ │ │ │ │ └── ColVisAlt.css │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── ColVis.html │ │ │ │ │ │ ├── a69b02bcf2.html │ │ │ │ │ │ ├── ccb5a49865.html │ │ │ │ │ │ ├── global.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── button.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── ColVis.js │ │ │ │ │ │ ├── ColVis.min.js │ │ │ │ │ │ └── ColVis.min.js.gz │ │ │ │ ├── mouseover.html │ │ │ │ ├── style.html │ │ │ │ ├── text.html │ │ │ │ ├── theme.html │ │ │ │ ├── title_callback.html │ │ │ │ ├── two_tables.html │ │ │ │ └── two_tables_identical.html │ │ │ ├── FixedColumns │ │ │ │ ├── col_filter.html │ │ │ │ ├── css_size.html │ │ │ │ ├── docs │ │ │ │ │ ├── 070023b890.html │ │ │ │ │ ├── 526f872207.html │ │ │ │ │ ├── 73098af57c.html │ │ │ │ │ ├── 889588ec06.html │ │ │ │ │ ├── 91bce7c4ad.html │ │ │ │ │ ├── FixedColumns.defaults.html │ │ │ │ │ ├── FixedColumns.html │ │ │ │ │ ├── a6bd52f587.html │ │ │ │ │ ├── d3890ba7c4.html │ │ │ │ │ ├── e20106c59a.html │ │ │ │ │ ├── global.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── media │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ └── license │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ ├── index.html │ │ │ │ ├── index_column.html │ │ │ │ ├── left_right_columns.html │ │ │ │ ├── media │ │ │ │ │ └── js │ │ │ │ │ │ ├── FixedColumns.js │ │ │ │ │ │ ├── FixedColumns.min.js │ │ │ │ │ │ └── FixedColumns.min.js.gz │ │ │ │ ├── right_column.html │ │ │ │ ├── row_grouping.html │ │ │ │ ├── row_grouping_height.html │ │ │ │ ├── rowspan.html │ │ │ │ ├── scale_fixed.html │ │ │ │ ├── scale_relative.html │ │ │ │ ├── server-side-processing.html │ │ │ │ ├── themed.html │ │ │ │ ├── two_columns.html │ │ │ │ └── x_y_scrolling.html │ │ │ ├── FixedHeader │ │ │ │ ├── html_table.html │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── FixedHeader.js │ │ │ │ │ ├── FixedHeader.min.js │ │ │ │ │ └── FixedHeader.min.js.gz │ │ │ │ ├── top_bottom_left_right.html │ │ │ │ ├── top_left.html │ │ │ │ ├── two_tables.html │ │ │ │ └── zIndexes.html │ │ │ ├── KeyTable │ │ │ │ ├── datatable.html │ │ │ │ ├── datatable_scrolling.html │ │ │ │ ├── editing.html │ │ │ │ ├── form.html │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ │ ├── KeyTable.js │ │ │ │ │ ├── KeyTable.min.js │ │ │ │ │ └── KeyTable.min.js.gz │ │ │ ├── Scroller │ │ │ │ ├── api_scrolling.html │ │ │ │ ├── index.html │ │ │ │ ├── large_js_source.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ └── dataTables.scroller.css │ │ │ │ │ ├── data │ │ │ │ │ │ ├── 2500.txt │ │ │ │ │ │ └── server_processing.php │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── Scroller.html │ │ │ │ │ │ ├── Scroller.oDefaults.html │ │ │ │ │ │ ├── baed189d4a.html │ │ │ │ │ │ ├── c6053fac6b.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── loading-background.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ │ │ ├── dataTables.scroller.min.js │ │ │ │ │ │ └── dataTables.scroller.min.js.gz │ │ │ │ ├── server-side_processing.html │ │ │ │ └── state_saving.html │ │ │ └── TableTools │ │ │ │ ├── alt_init.html │ │ │ │ ├── alter_buttons.html │ │ │ │ ├── bootstrap.html │ │ │ │ ├── button_text.html │ │ │ │ ├── collection.html │ │ │ │ ├── defaults.html │ │ │ │ ├── index.html │ │ │ │ ├── media │ │ │ │ ├── as3 │ │ │ │ │ ├── ZeroClipboard.as │ │ │ │ │ ├── ZeroClipboardPdf.as │ │ │ │ │ └── lib │ │ │ │ │ │ └── AlivePDF.swc │ │ │ │ ├── css │ │ │ │ │ ├── TableTools.css │ │ │ │ │ └── TableTools_JUI.css │ │ │ │ ├── images │ │ │ │ │ ├── background.png │ │ │ │ │ ├── collection.png │ │ │ │ │ ├── collection_hover.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── copy_hover.png │ │ │ │ │ ├── csv.png │ │ │ │ │ ├── csv_hover.png │ │ │ │ │ ├── pdf.png │ │ │ │ │ ├── pdf_hover.png │ │ │ │ │ ├── print.png │ │ │ │ │ ├── print_hover.png │ │ │ │ │ ├── psd │ │ │ │ │ │ ├── collection.psd │ │ │ │ │ │ ├── copy document.psd │ │ │ │ │ │ ├── file_types.psd │ │ │ │ │ │ └── printer.psd │ │ │ │ │ ├── xls.png │ │ │ │ │ └── xls_hover.png │ │ │ │ ├── js │ │ │ │ │ ├── TableTools.js │ │ │ │ │ ├── TableTools.min.js │ │ │ │ │ ├── TableTools.min.js.gz │ │ │ │ │ └── ZeroClipboard.js │ │ │ │ └── swf │ │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ │ └── copy_csv_xls_pdf.swf │ │ │ │ ├── multi_instance.html │ │ │ │ ├── multiple_tables.html │ │ │ │ ├── pdf_message.html │ │ │ │ ├── plug-in.html │ │ │ │ ├── select_multi.html │ │ │ │ ├── select_single.html │ │ │ │ ├── swf_path.html │ │ │ │ ├── tabs.html │ │ │ │ └── theme.html │ │ ├── license-bsd.txt │ │ ├── license-gpl2.txt │ │ ├── media │ │ │ ├── css │ │ │ │ ├── DT_bootstrap.css │ │ │ │ ├── demo_page.css │ │ │ │ ├── demo_table.css │ │ │ │ ├── demo_table_jui.css │ │ │ │ ├── images │ │ │ │ │ ├── Sorting icons.psd │ │ │ │ │ ├── back_disabled.png │ │ │ │ │ ├── back_enabled.png │ │ │ │ │ ├── back_enabled_hover.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── forward_disabled.png │ │ │ │ │ ├── forward_enabled.png │ │ │ │ │ ├── forward_enabled_hover.png │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ ├── sort_both.png │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ ├── jquery.dataTables.css │ │ │ │ └── jquery.dataTables_themeroller.css │ │ │ ├── js │ │ │ │ ├── DT_bootstrap.js │ │ │ │ ├── jquery.dataTables.editable.js │ │ │ │ ├── jquery.dataTables.js │ │ │ │ ├── jquery.dataTables.min.js │ │ │ │ └── jquery.js │ │ │ ├── src │ │ │ │ ├── DataTables.js │ │ │ │ ├── api │ │ │ │ │ ├── api.internal.js │ │ │ │ │ ├── api.methods.js │ │ │ │ │ └── api.static.js │ │ │ │ ├── core │ │ │ │ │ ├── core.ajax.js │ │ │ │ │ ├── core.columns.js │ │ │ │ │ ├── core.constructor.js │ │ │ │ │ ├── core.data.js │ │ │ │ │ ├── core.draw.js │ │ │ │ │ ├── core.filter.js │ │ │ │ │ ├── core.info.js │ │ │ │ │ ├── core.init.js │ │ │ │ │ ├── core.length.js │ │ │ │ │ ├── core.page.js │ │ │ │ │ ├── core.processing.js │ │ │ │ │ ├── core.scrolling.js │ │ │ │ │ ├── core.sizing.js │ │ │ │ │ ├── core.sort.js │ │ │ │ │ ├── core.state.js │ │ │ │ │ └── core.support.js │ │ │ │ ├── ext │ │ │ │ │ ├── ext.classes.js │ │ │ │ │ ├── ext.paging.js │ │ │ │ │ ├── ext.sorting.js │ │ │ │ │ └── ext.types.js │ │ │ │ └── model │ │ │ │ │ ├── model.column.js │ │ │ │ │ ├── model.defaults.columns.js │ │ │ │ │ ├── model.defaults.js │ │ │ │ │ ├── model.ext.js │ │ │ │ │ ├── model.row.js │ │ │ │ │ ├── model.search.js │ │ │ │ │ └── model.settings.js │ │ │ └── unit_testing │ │ │ │ ├── controller.js │ │ │ │ ├── controller.php │ │ │ │ ├── index.html │ │ │ │ ├── performance │ │ │ │ ├── draw.html │ │ │ │ ├── large.php │ │ │ │ ├── page.html │ │ │ │ └── sort.html │ │ │ │ ├── templates │ │ │ │ ├── -complex_header.php │ │ │ │ ├── 2512.php │ │ │ │ ├── 6776.php │ │ │ │ ├── complex_header_2.php │ │ │ │ ├── deferred_table.php │ │ │ │ ├── dom_data.php │ │ │ │ ├── dom_data_th.php │ │ │ │ ├── dom_data_two_headers.php │ │ │ │ ├── dymanic_table.php │ │ │ │ ├── empty_table.php │ │ │ │ ├── html_table.php │ │ │ │ ├── js_data.php │ │ │ │ ├── js_data_mixed_types.php │ │ │ │ └── two_tables.php │ │ │ │ ├── tests │ │ │ │ └── 1_dom │ │ │ │ │ └── _zero_config.js │ │ │ │ ├── tests_onhold │ │ │ │ ├── 1_dom │ │ │ │ │ ├── -complex_header.js │ │ │ │ │ ├── -iDraw.js │ │ │ │ │ ├── 2512.js │ │ │ │ │ ├── 2530-2.js │ │ │ │ │ ├── 2530.js │ │ │ │ │ ├── 2569.js │ │ │ │ │ ├── 2600.js │ │ │ │ │ ├── 2608.js │ │ │ │ │ ├── 2635.js │ │ │ │ │ ├── 2746-stable-sort.js │ │ │ │ │ ├── 2799.js │ │ │ │ │ ├── 2840-restore-table-width.js │ │ │ │ │ ├── 2914-state-save-sort.js │ │ │ │ │ ├── 5396-fnUpdate-arrays-mData.js │ │ │ │ │ ├── 5396-fnUpdate-arrays.js │ │ │ │ │ ├── 5508-xscroll-zero-content.js │ │ │ │ │ ├── 6776-scrolling-table-grows.js │ │ │ │ │ ├── _getDataFunctions.js │ │ │ │ │ ├── _setDataFunctions.js │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.bVisible2.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfiniteScroll.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bJQueryUI.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortCellsTop.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnCookieCallback.js │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ ├── fnDeleteRow.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnFilter.js │ │ │ │ │ ├── fnFooterCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInfoCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── fnSetColumnVis.js │ │ │ │ │ ├── fnSetColumnVis2.js │ │ │ │ │ ├── html-autodetect-sort.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ ├── sPaginationType.js │ │ │ │ │ ├── sScrollXY.js │ │ │ │ │ └── th_in_body.js │ │ │ │ ├── 2_js │ │ │ │ │ ├── 39-nested-null.js │ │ │ │ │ ├── 6872-default-content-missing-props.js │ │ │ │ │ ├── 8549--string-sorting-nonstrings.js │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnFooterCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── js_data_mixed_types.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ ├── 3_ajax │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── fnServerData.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sLoadingRecords.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxDataProp.js │ │ │ │ │ ├── sAjaxDataProp2.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ ├── 4_server-side │ │ │ │ │ ├── -iDraw.js │ │ │ │ │ ├── 2440.js │ │ │ │ │ ├── 2569.js │ │ │ │ │ ├── 2600.js │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfiniteScroll.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── iDeferLoading.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxDataProp.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ ├── 5_ajax_objects │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── _zero_config_arrays_subobjects.js │ │ │ │ │ ├── _zero_config_deep.js │ │ │ │ │ ├── _zero_config_mDataProp.js │ │ │ │ │ ├── _zero_config_null_source.js │ │ │ │ │ ├── _zero_config_objects.js │ │ │ │ │ ├── _zero_config_objects_subarrays.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── fnServerData.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ └── 6_delayed_rendering │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── fnServerData.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxDataProp.js │ │ │ │ │ ├── sAjaxDataProp2.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ └── unit_test.js │ │ ├── package.json │ │ └── scripts │ │ │ ├── jshint.config │ │ │ ├── make.sh │ │ │ └── unit_tests.sh │ │ ├── Jcrop │ │ ├── MIT-LICENSE.txt │ │ ├── README.md │ │ ├── css │ │ │ ├── Jcrop.gif │ │ │ ├── jquery.Jcrop.css │ │ │ └── jquery.Jcrop.min.css │ │ ├── demos │ │ │ ├── crop.php │ │ │ ├── demo_files │ │ │ │ ├── demos.css │ │ │ │ ├── main.css │ │ │ │ ├── pool.jpg │ │ │ │ ├── sago.jpg │ │ │ │ ├── sagomod.jpg │ │ │ │ └── sagomod.png │ │ │ ├── non-image.html │ │ │ ├── styling.html │ │ │ ├── tutorial1.html │ │ │ ├── tutorial2.html │ │ │ ├── tutorial3.html │ │ │ ├── tutorial4.html │ │ │ └── tutorial5.html │ │ ├── index.html │ │ └── js │ │ │ ├── jquery.Jcrop.js │ │ │ ├── jquery.Jcrop.min.js │ │ │ ├── jquery.color.js │ │ │ └── jquery.min.js │ │ ├── autosize │ │ ├── autosize.jquery.json │ │ ├── bower.json │ │ ├── demo.html │ │ ├── jquery.autosize.js │ │ ├── jquery.autosize.min.js │ │ ├── package.json │ │ └── readme.md │ │ ├── blockUI │ │ └── jquery.blockUI.js │ │ ├── bootstrap-colorpalette │ │ ├── README.md │ │ ├── css │ │ │ ├── bootstrap-colorpalette.css │ │ │ └── example.css │ │ ├── example.html │ │ └── js │ │ │ └── bootstrap-colorpalette.js │ │ ├── bootstrap-colorpicker │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── css │ │ │ └── bootstrap-colorpicker.css │ │ ├── img │ │ │ └── bootstrap-colorpicker │ │ │ │ ├── alpha.png │ │ │ │ ├── hue.png │ │ │ │ └── saturation.png │ │ ├── index.html │ │ ├── js │ │ │ ├── bootstrap-colorpicker.js │ │ │ └── commits.js │ │ └── less │ │ │ └── bootstrap-colorpicker.less │ │ ├── bootstrap-datepicker │ │ ├── .gitignore │ │ ├── .hgignore │ │ ├── .hgtags │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ │ ├── build.less │ │ │ └── build_standalone.less │ │ ├── composer.json │ │ ├── css │ │ │ └── datepicker.css │ │ ├── docs │ │ │ ├── Makefile │ │ │ ├── _static │ │ │ │ └── demo_head.png │ │ │ ├── conf.py │ │ │ ├── events.rst │ │ │ ├── i18n.rst │ │ │ ├── index.rst │ │ │ ├── keyboard.rst │ │ │ ├── make.bat │ │ │ ├── markup.rst │ │ │ ├── methods.rst │ │ │ └── options.rst │ │ ├── js │ │ │ ├── bootstrap-datepicker.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datepicker.ar.js │ │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ │ ├── bootstrap-datepicker.cy.js │ │ │ │ ├── bootstrap-datepicker.da.js │ │ │ │ ├── bootstrap-datepicker.de.js │ │ │ │ ├── bootstrap-datepicker.el.js │ │ │ │ ├── bootstrap-datepicker.es.js │ │ │ │ ├── bootstrap-datepicker.et.js │ │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ │ ├── bootstrap-datepicker.he.js │ │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ │ ├── bootstrap-datepicker.id.js │ │ │ │ ├── bootstrap-datepicker.is.js │ │ │ │ ├── bootstrap-datepicker.it.js │ │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ │ ├── bootstrap-datepicker.ka.js │ │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ │ ├── bootstrap-datepicker.mk.js │ │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ │ ├── bootstrap-datepicker.nl-BE.js │ │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ │ ├── bootstrap-datepicker.no.js │ │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ │ ├── bootstrap-datepicker.sq.js │ │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ │ ├── bootstrap-datepicker.th.js │ │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ │ ├── bootstrap-datepicker.ua.js │ │ │ │ ├── bootstrap-datepicker.uk.js │ │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ ├── less │ │ │ └── datepicker.less │ │ └── tests │ │ │ ├── README.md │ │ │ ├── _coverage.html │ │ │ ├── assets │ │ │ ├── coverage.js │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── mock.js │ │ │ ├── qunit-logging.js │ │ │ ├── qunit.css │ │ │ ├── qunit.js │ │ │ └── utils.js │ │ │ ├── run-qunit.js │ │ │ ├── suites │ │ │ ├── calendar-weeks.js │ │ │ ├── component.js │ │ │ ├── data-api.js │ │ │ ├── events.js │ │ │ ├── formats.js │ │ │ ├── inline.js │ │ │ ├── keyboard_navigation │ │ │ │ ├── 2011.js │ │ │ │ ├── 2012.js │ │ │ │ └── all.js │ │ │ ├── methods.js │ │ │ ├── mouse_navigation │ │ │ │ ├── 2011.js │ │ │ │ ├── 2012.js │ │ │ │ └── all.js │ │ │ ├── noconflict.js │ │ │ └── options.js │ │ │ └── tests.html │ │ ├── bootstrap-daterangepicker │ │ ├── README.md │ │ ├── daterangepicker-bs2.css │ │ ├── daterangepicker-bs3.css │ │ ├── daterangepicker.js │ │ ├── examples.html │ │ ├── moment.js │ │ └── moment.min.js │ │ ├── bootstrap-datetimepicker │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ │ ├── build.less │ │ │ └── build_standalone.less │ │ ├── css │ │ │ └── datetimepicker.css │ │ ├── js │ │ │ ├── bootstrap-datetimepicker.js │ │ │ ├── bootstrap-datetimepicker.min.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datetimepicker.bg.js │ │ │ │ ├── bootstrap-datetimepicker.ca.js │ │ │ │ ├── bootstrap-datetimepicker.cs.js │ │ │ │ ├── bootstrap-datetimepicker.da.js │ │ │ │ ├── bootstrap-datetimepicker.de.js │ │ │ │ ├── bootstrap-datetimepicker.el.js │ │ │ │ ├── bootstrap-datetimepicker.es.js │ │ │ │ ├── bootstrap-datetimepicker.fi.js │ │ │ │ ├── bootstrap-datetimepicker.fr.js │ │ │ │ ├── bootstrap-datetimepicker.he.js │ │ │ │ ├── bootstrap-datetimepicker.hr.js │ │ │ │ ├── bootstrap-datetimepicker.hu.js │ │ │ │ ├── bootstrap-datetimepicker.id.js │ │ │ │ ├── bootstrap-datetimepicker.is.js │ │ │ │ ├── bootstrap-datetimepicker.it.js │ │ │ │ ├── bootstrap-datetimepicker.ja.js │ │ │ │ ├── bootstrap-datetimepicker.kr.js │ │ │ │ ├── bootstrap-datetimepicker.lt.js │ │ │ │ ├── bootstrap-datetimepicker.lv.js │ │ │ │ ├── bootstrap-datetimepicker.ms.js │ │ │ │ ├── bootstrap-datetimepicker.nb.js │ │ │ │ ├── bootstrap-datetimepicker.nl.js │ │ │ │ ├── bootstrap-datetimepicker.pl.js │ │ │ │ ├── bootstrap-datetimepicker.pt-BR.js │ │ │ │ ├── bootstrap-datetimepicker.pt.js │ │ │ │ ├── bootstrap-datetimepicker.ro.js │ │ │ │ ├── bootstrap-datetimepicker.rs-latin.js │ │ │ │ ├── bootstrap-datetimepicker.rs.js │ │ │ │ ├── bootstrap-datetimepicker.ru.js │ │ │ │ ├── bootstrap-datetimepicker.sk.js │ │ │ │ ├── bootstrap-datetimepicker.sl.js │ │ │ │ ├── bootstrap-datetimepicker.sv.js │ │ │ │ ├── bootstrap-datetimepicker.sw.js │ │ │ │ ├── bootstrap-datetimepicker.th.js │ │ │ │ ├── bootstrap-datetimepicker.tr.js │ │ │ │ ├── bootstrap-datetimepicker.ua.js │ │ │ │ ├── bootstrap-datetimepicker.uk.js │ │ │ │ ├── bootstrap-datetimepicker.zh-CN.js │ │ │ │ └── bootstrap-datetimepicker.zh-TW.js │ │ ├── less │ │ │ └── datetimepicker.less │ │ ├── sample │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── img │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ └── bootstrap.min.js │ │ │ ├── index.html │ │ │ └── jquery │ │ │ │ └── jquery-1.8.3.min.js │ │ ├── screenshot │ │ │ ├── standard_day.png │ │ │ ├── standard_day_meridian.png │ │ │ ├── standard_decade.png │ │ │ ├── standard_full.png │ │ │ ├── standard_hour.png │ │ │ ├── standard_hour_meridian.png │ │ │ ├── standard_month.png │ │ │ └── standard_year.png │ │ └── tests │ │ │ ├── README.md │ │ │ ├── _coverage.html │ │ │ ├── assets │ │ │ ├── coverage.js │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── mock.js │ │ │ ├── qunit-logging.js │ │ │ ├── qunit.css │ │ │ ├── qunit.js │ │ │ └── utils.js │ │ │ ├── run-qunit.js │ │ │ ├── suites │ │ │ ├── component.js │ │ │ ├── events.js │ │ │ ├── formats.js │ │ │ ├── inline.js │ │ │ ├── keyboard_navigation │ │ │ │ ├── 2011.js │ │ │ │ ├── 2012.js │ │ │ │ └── all.js │ │ │ ├── mouse_navigation │ │ │ │ ├── 2011.js │ │ │ │ ├── 2012.js │ │ │ │ └── all.js │ │ │ └── options.js │ │ │ ├── tests.html │ │ │ └── tests.min.html │ │ ├── bootstrap-fileupload │ │ ├── bootstrap-fileupload.css │ │ ├── bootstrap-fileupload.js │ │ ├── bootstrap-fileupload.min.css │ │ └── bootstrap-fileupload.min.js │ │ ├── bootstrap-hover-dropdown │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap-hover-dropdown.js │ │ ├── bootstrap-hover-dropdown.min.js │ │ ├── bower.json │ │ └── demo.html │ │ ├── bootstrap-modal │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bs3.html │ │ ├── component.json │ │ ├── composer.json │ │ ├── css │ │ │ ├── bootstrap-modal-bs3patch.css │ │ │ └── bootstrap-modal.css │ │ ├── img │ │ │ └── ajax-loader.gif │ │ ├── index.html │ │ ├── js │ │ │ ├── bootstrap-modal.js │ │ │ └── bootstrap-modalmanager.js │ │ ├── modal_ajax_test.html │ │ └── params.json │ │ ├── bootstrap-paginator │ │ ├── .gitignore │ │ ├── CHANGELOG │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap-paginator.jquery.json │ │ ├── build.sh │ │ ├── build │ │ │ └── bootstrap-paginator.min.js │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrapv3.css │ │ │ ├── bootstrapv3.min.css │ │ │ ├── documentation.css │ │ │ ├── highlight.js │ │ │ │ ├── arta.css │ │ │ │ ├── ascetic.css │ │ │ │ ├── brown_paper.css │ │ │ │ ├── brown_papersq.png │ │ │ │ ├── dark.css │ │ │ │ ├── default.css │ │ │ │ ├── far.css │ │ │ │ ├── github.css │ │ │ │ ├── googlecode.css │ │ │ │ ├── idea.css │ │ │ │ ├── ir_black.css │ │ │ │ ├── magula.css │ │ │ │ ├── monokai.css │ │ │ │ ├── pojoaque.css │ │ │ │ ├── pojoaque.jpg │ │ │ │ ├── rainbow.css │ │ │ │ ├── school_book.css │ │ │ │ ├── school_book.png │ │ │ │ ├── solarized_dark.css │ │ │ │ ├── solarized_light.css │ │ │ │ ├── sunburst.css │ │ │ │ ├── tomorrow-night-blue.css │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ ├── tomorrow-night.css │ │ │ │ ├── tomorrow.css │ │ │ │ ├── vs.css │ │ │ │ ├── xcode.css │ │ │ │ └── zenburn.css │ │ │ └── qunit-1.11.0.css │ │ ├── documentation │ │ │ └── index.html │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ ├── glyphicons-halflings.png │ │ │ └── illustration.png │ │ ├── lib │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── bootstrapv3.js │ │ │ ├── highlight.pack.js │ │ │ ├── jquery-1.9.1.min.js │ │ │ ├── jquery.history.js │ │ │ └── qunit-1.11.0.js │ │ ├── src │ │ │ └── bootstrap-paginator.js │ │ └── test │ │ │ ├── test.html │ │ │ └── testv3.html │ │ ├── bootstrap-social-buttons │ │ ├── LICENSE │ │ ├── README.md │ │ ├── social-buttons-3.css │ │ ├── social-buttons-3.less │ │ ├── social-buttons.css │ │ └── social-buttons.less │ │ ├── bootstrap-switch │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── examples │ │ │ └── index.html │ │ └── static │ │ │ ├── js │ │ │ ├── bootstrap-switch.js │ │ │ └── bootstrap-switch.min.js │ │ │ ├── less │ │ │ ├── bootstrap-switch.less │ │ │ └── deps │ │ │ │ ├── mixins.less │ │ │ │ └── variables.less │ │ │ └── stylesheets │ │ │ ├── bootstrap-switch.css │ │ │ └── flat-ui-fonts.css │ │ ├── bootstrap-timepicker │ │ ├── .bowerrc │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── component.json │ │ ├── composer.json │ │ ├── css │ │ │ ├── bootstrap-timepicker.css │ │ │ └── bootstrap-timepicker.min.css │ │ ├── js │ │ │ ├── bootstrap-timepicker.js │ │ │ └── bootstrap-timepicker.min.js │ │ ├── less │ │ │ └── timepicker.less │ │ ├── package.json │ │ └── spec │ │ │ └── js │ │ │ ├── KeyboardEventsSpec.js │ │ │ ├── MouseEventsSpec.js │ │ │ ├── TimepickerSpec.js │ │ │ ├── fixtures │ │ │ └── timepicker.html │ │ │ └── helpers │ │ │ ├── SpecHelper.js │ │ │ └── jasmine-jquery.js │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ ├── ckeditor │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── fakeobjects │ │ │ │ └── images │ │ │ │ │ └── spacer.gif │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ └── icon.png │ │ │ │ │ └── icon.png │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── scayt │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ │ │ └── specialchar.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmp.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ ├── samples │ │ │ ├── ajax.html │ │ │ ├── api.html │ │ │ ├── appendto.html │ │ │ ├── assets │ │ │ │ ├── inlineall │ │ │ │ │ └── logo.png │ │ │ │ ├── outputxhtml │ │ │ │ │ └── outputxhtml.css │ │ │ │ ├── posteddata.php │ │ │ │ ├── sample.css │ │ │ │ ├── sample.jpg │ │ │ │ └── uilanguages │ │ │ │ │ └── languages.js │ │ │ ├── datafiltering.html │ │ │ ├── divreplace.html │ │ │ ├── index.html │ │ │ ├── inlineall.html │ │ │ ├── inlinebycode.html │ │ │ ├── inlinetextarea.html │ │ │ ├── jquery.html │ │ │ ├── plugins │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── htmlwriter │ │ │ │ │ ├── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ └── outputhtml.html │ │ │ │ ├── magicline │ │ │ │ │ └── magicline.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ └── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ ├── readonly.html │ │ │ ├── replacebyclass.html │ │ │ ├── replacebycode.html │ │ │ ├── sample.css │ │ │ ├── sample.js │ │ │ ├── sample_posteddata.php │ │ │ ├── tabindex.html │ │ │ ├── uicolor.html │ │ │ ├── uilanguages.html │ │ │ └── xhtmlstyle.html │ │ ├── skins │ │ │ └── moono │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── dialog_opera.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ │ └── readme.md │ │ └── styles.js │ │ ├── colorbox │ │ ├── README.md │ │ ├── bower.json │ │ ├── colorbox.ai │ │ ├── colorbox.jquery.json │ │ ├── content │ │ │ ├── ajax.html │ │ │ ├── daisy.jpg │ │ │ ├── daisy@2x.jpg │ │ │ ├── homer.jpg │ │ │ ├── marylou.jpg │ │ │ ├── ohoopee1.jpg │ │ │ ├── ohoopee2.jpg │ │ │ └── ohoopee3.jpg │ │ ├── example1 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── border.png │ │ │ │ ├── controls.png │ │ │ │ ├── loading.gif │ │ │ │ ├── loading_background.png │ │ │ │ └── overlay.png │ │ │ └── index.html │ │ ├── example2 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── controls.png │ │ │ │ └── loading.gif │ │ │ └── index.html │ │ ├── example3 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── controls.png │ │ │ │ └── loading.gif │ │ │ └── index.html │ │ ├── example4 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── border1.png │ │ │ │ ├── border2.png │ │ │ │ └── loading.gif │ │ │ └── index.html │ │ ├── example5 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── border.png │ │ │ │ ├── controls.png │ │ │ │ ├── loading.gif │ │ │ │ └── loading_background.png │ │ │ └── index.html │ │ ├── i18n │ │ │ ├── jquery.colorbox-ar.js │ │ │ ├── jquery.colorbox-bg.js │ │ │ ├── jquery.colorbox-cs.js │ │ │ ├── jquery.colorbox-da.js │ │ │ ├── jquery.colorbox-de.js │ │ │ ├── jquery.colorbox-es.js │ │ │ ├── jquery.colorbox-et.js │ │ │ ├── jquery.colorbox-fa.js │ │ │ ├── jquery.colorbox-fi.js │ │ │ ├── jquery.colorbox-fr.js │ │ │ ├── jquery.colorbox-gl.js │ │ │ ├── jquery.colorbox-he.js │ │ │ ├── jquery.colorbox-hr.js │ │ │ ├── jquery.colorbox-hu.js │ │ │ ├── jquery.colorbox-id.js │ │ │ ├── jquery.colorbox-it.js │ │ │ ├── jquery.colorbox-ja.js │ │ │ ├── jquery.colorbox-kr.js │ │ │ ├── jquery.colorbox-lv.js │ │ │ ├── jquery.colorbox-nl.js │ │ │ ├── jquery.colorbox-no.js │ │ │ ├── jquery.colorbox-pl.js │ │ │ ├── jquery.colorbox-pt-br.js │ │ │ ├── jquery.colorbox-ro.js │ │ │ ├── jquery.colorbox-ru.js │ │ │ ├── jquery.colorbox-si.js │ │ │ ├── jquery.colorbox-sk.js │ │ │ ├── jquery.colorbox-sv.js │ │ │ ├── jquery.colorbox-tr.js │ │ │ ├── jquery.colorbox-uk.js │ │ │ └── jquery.colorbox-zh-CN.js │ │ ├── jquery.colorbox-min.js │ │ └── jquery.colorbox.js │ │ ├── css3-animation │ │ └── animations.css │ │ ├── datepicker │ │ ├── css │ │ │ └── datepicker.css │ │ ├── js │ │ │ └── bootstrap-datepicker.js │ │ └── less │ │ │ └── datepicker.less │ │ ├── dropzone │ │ ├── .gitignore │ │ ├── .tagconfig │ │ ├── .travis.yml │ │ ├── AMD_footer │ │ ├── AMD_header │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.coffee │ │ ├── bower.json │ │ ├── component.json │ │ ├── downloads │ │ │ ├── css │ │ │ │ ├── basic.css │ │ │ │ ├── dropzone.css │ │ │ │ └── stylus │ │ │ │ │ ├── basic.styl │ │ │ │ │ └── dropzone.styl │ │ │ ├── dropzone-amd-module.js │ │ │ ├── dropzone-amd-module.min.js │ │ │ ├── dropzone.js │ │ │ ├── dropzone.min.js │ │ │ └── images │ │ │ │ ├── spritemap.png │ │ │ │ └── spritemap@2x.png │ │ ├── index.js │ │ ├── lib │ │ │ └── dropzone.js │ │ ├── npm_publish.sh │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ │ └── dropzone.coffee │ │ └── test │ │ │ ├── test.coffee │ │ │ ├── test.html │ │ │ └── test.js │ │ ├── dynatree │ │ ├── GPL-LICENSE.txt │ │ ├── MIT-License.txt │ │ ├── dist │ │ │ ├── jquery.dynatree-1.2.4.js │ │ │ └── jquery.dynatree.min.js │ │ ├── doc │ │ │ ├── contextmenu │ │ │ │ ├── images │ │ │ │ │ ├── cut.png │ │ │ │ │ ├── door.png │ │ │ │ │ ├── page_white_copy.png │ │ │ │ │ ├── page_white_delete.png │ │ │ │ │ ├── page_white_edit.png │ │ │ │ │ └── page_white_paste.png │ │ │ │ ├── jquery.contextMenu-custom.js │ │ │ │ └── jquery.contextMenu.css │ │ │ ├── dynatree-doc.html │ │ │ ├── dynatree_server.py │ │ │ ├── howto.css │ │ │ ├── howto.js │ │ │ ├── iconInfo_32x32.png │ │ │ ├── iconWarning_32x32.png │ │ │ ├── icons-vista.psp │ │ │ ├── icons-xp.psp │ │ │ ├── icons_layout.ods │ │ │ ├── jq.context │ │ │ │ ├── images │ │ │ │ │ ├── cut.png │ │ │ │ │ ├── door.png │ │ │ │ │ ├── page_white_copy.png │ │ │ │ │ ├── page_white_delete.png │ │ │ │ │ ├── page_white_edit.png │ │ │ │ │ └── page_white_paste.png │ │ │ │ ├── jquery.contextMenu.css │ │ │ │ ├── jquery.contextMenu.js │ │ │ │ └── jquery.ui.position.js │ │ │ ├── jquery.planize.js │ │ │ ├── nav_bg.png │ │ │ ├── prettify.css │ │ │ ├── prettify.js │ │ │ ├── sample-api.html │ │ │ ├── sample-contextmenu.html │ │ │ ├── sample-contextmenu2.html │ │ │ ├── sample-data1.json │ │ │ ├── sample-data2.json │ │ │ ├── sample-data3.json │ │ │ ├── sample-default.html │ │ │ ├── sample-dnd.html │ │ │ ├── sample-dnd2.html │ │ │ ├── sample-dnd3.html │ │ │ ├── sample-effects.html │ │ │ ├── sample-empty.json │ │ │ ├── sample-events.html │ │ │ ├── sample-form.html │ │ │ ├── sample-iframe-1.html │ │ │ ├── sample-iframe.html │ │ │ ├── sample-init-lazy.html │ │ │ ├── sample-inline-edit.html │ │ │ ├── sample-lazy.html │ │ │ ├── sample-minexpand.html │ │ │ ├── sample-multiline.html │ │ │ ├── sample-persist.html │ │ │ ├── sample-pyserver.html │ │ │ ├── sample-quick.html │ │ │ ├── sample-rtl.html │ │ │ ├── sample-select.html │ │ │ ├── sample-theming.html │ │ │ ├── sample-ul.html │ │ │ ├── sample.css │ │ │ ├── sample.js │ │ │ ├── samples-nav.html │ │ │ ├── samples-top.html │ │ │ ├── samples-welcome.html │ │ │ ├── samples.html │ │ │ ├── skin-custom │ │ │ │ ├── custom.css │ │ │ │ ├── customDoc1.gif │ │ │ │ ├── customDoc2.gif │ │ │ │ ├── customFolder1.gif │ │ │ │ ├── doc_with_children.gif │ │ │ │ ├── folder_docs.gif │ │ │ │ ├── folder_images.gif │ │ │ │ └── folder_page.gif │ │ │ ├── test-bench.html │ │ │ ├── test-css.html │ │ │ ├── test-dtd-html4-strict.html │ │ │ ├── test-dtd-html4-transitional.html │ │ │ ├── test-dtd-html5.html │ │ │ ├── test-dtd-none.html │ │ │ ├── test-dtd-xml-strict.html │ │ │ ├── test-dtd-xml-transitional.html │ │ │ ├── test-latest.html │ │ │ ├── test-persist.html │ │ │ ├── test-preload.html │ │ │ ├── test-release.html │ │ │ ├── test-table.html │ │ │ └── test-xhtml.xhtml │ │ ├── grunt.js │ │ ├── index.html │ │ ├── jquery │ │ │ ├── README.txt │ │ │ ├── jquery-ui.custom.js │ │ │ ├── jquery-ui.custom.min.js │ │ │ ├── jquery.cookie.js │ │ │ ├── jquery.js │ │ │ └── jquery.min.js │ │ ├── package.json │ │ ├── src │ │ │ ├── GPL-LICENSE.txt │ │ │ ├── MIT-License.txt │ │ │ ├── jquery.dynatree.js │ │ │ ├── skin-vista │ │ │ │ ├── icons.gif │ │ │ │ ├── loading.gif │ │ │ │ └── ui.dynatree.css │ │ │ └── skin │ │ │ │ ├── icons-rtl.gif │ │ │ │ ├── icons.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── ui.dynatree.css │ │ │ │ ├── vline-rtl.gif │ │ │ │ └── vline.gif │ │ └── tests │ │ │ ├── qunit.css │ │ │ ├── qunit.js │ │ │ ├── sample-data1.json │ │ │ ├── sample-data2.json │ │ │ ├── test-adhoc.html │ │ │ ├── test-bench.html │ │ │ ├── test-dynatree.js │ │ │ ├── test.html │ │ │ └── tests - Shortcut.lnk │ │ ├── excanvas.min.js │ │ ├── flot │ │ ├── API.md │ │ ├── CONTRIBUTING.md │ │ ├── FAQ.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── NEWS.md │ │ ├── PLUGINS.md │ │ ├── README.md │ │ ├── build.log │ │ ├── examples │ │ │ ├── ajax │ │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ │ ├── data-eu-gdp-growth-5.json │ │ │ │ ├── data-eu-gdp-growth.json │ │ │ │ ├── data-japan-gdp-growth.json │ │ │ │ ├── data-usa-gdp-growth.json │ │ │ │ └── index.html │ │ │ ├── annotating │ │ │ │ └── index.html │ │ │ ├── axes-interacting │ │ │ │ └── index.html │ │ │ ├── axes-multiple │ │ │ │ └── index.html │ │ │ ├── axes-time-zones │ │ │ │ ├── date.js │ │ │ │ ├── index.html │ │ │ │ └── tz │ │ │ │ │ ├── africa │ │ │ │ │ ├── antarctica │ │ │ │ │ ├── asia │ │ │ │ │ ├── australasia │ │ │ │ │ ├── backward │ │ │ │ │ ├── etcetera │ │ │ │ │ ├── europe │ │ │ │ │ ├── factory │ │ │ │ │ ├── iso3166.tab │ │ │ │ │ ├── leapseconds │ │ │ │ │ ├── northamerica │ │ │ │ │ ├── pacificnew │ │ │ │ │ ├── solar87 │ │ │ │ │ ├── solar88 │ │ │ │ │ ├── solar89 │ │ │ │ │ ├── southamerica │ │ │ │ │ ├── systemv │ │ │ │ │ ├── yearistype.sh │ │ │ │ │ └── zone.tab │ │ │ ├── axes-time │ │ │ │ └── index.html │ │ │ ├── background.png │ │ │ ├── basic-options │ │ │ │ └── index.html │ │ │ ├── basic-usage │ │ │ │ └── index.html │ │ │ ├── canvas │ │ │ │ └── index.html │ │ │ ├── categories │ │ │ │ └── index.html │ │ │ ├── examples.css │ │ │ ├── image │ │ │ │ ├── hs-2004-27-a-large-web.jpg │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── interacting │ │ │ │ └── index.html │ │ │ ├── navigate │ │ │ │ ├── arrow-down.gif │ │ │ │ ├── arrow-left.gif │ │ │ │ ├── arrow-right.gif │ │ │ │ ├── arrow-up.gif │ │ │ │ └── index.html │ │ │ ├── percentiles │ │ │ │ └── index.html │ │ │ ├── realtime │ │ │ │ └── index.html │ │ │ ├── resize │ │ │ │ └── index.html │ │ │ ├── selection │ │ │ │ └── index.html │ │ │ ├── series-errorbars │ │ │ │ └── index.html │ │ │ ├── series-pie │ │ │ │ └── index.html │ │ │ ├── series-toggle │ │ │ │ └── index.html │ │ │ ├── series-types │ │ │ │ └── index.html │ │ │ ├── shared │ │ │ │ └── jquery-ui │ │ │ │ │ ├── jquery-ui.min.css │ │ │ │ │ └── jquery-ui.min.js │ │ │ ├── stacking │ │ │ │ └── index.html │ │ │ ├── symbols │ │ │ │ └── index.html │ │ │ ├── threshold │ │ │ │ └── index.html │ │ │ ├── tracking │ │ │ │ └── index.html │ │ │ ├── visitors │ │ │ │ └── index.html │ │ │ └── zooming │ │ │ │ └── index.html │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── jquery.colorhelpers.js │ │ ├── jquery.colorhelpers.min.js │ │ ├── jquery.flot.canvas.js │ │ ├── jquery.flot.canvas.min.js │ │ ├── jquery.flot.categories.js │ │ ├── jquery.flot.categories.min.js │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.crosshair.min.js │ │ ├── jquery.flot.errorbars.js │ │ ├── jquery.flot.errorbars.min.js │ │ ├── jquery.flot.fillbetween.js │ │ ├── jquery.flot.fillbetween.min.js │ │ ├── jquery.flot.image.js │ │ ├── jquery.flot.image.min.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.min.js │ │ ├── jquery.flot.navigate.js │ │ ├── jquery.flot.navigate.min.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.pie.min.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.resize.min.js │ │ ├── jquery.flot.selection.js │ │ ├── jquery.flot.selection.min.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.flot.stack.min.js │ │ ├── jquery.flot.symbol.js │ │ ├── jquery.flot.symbol.min.js │ │ ├── jquery.flot.threshold.js │ │ ├── jquery.flot.threshold.min.js │ │ ├── jquery.flot.time.js │ │ ├── jquery.flot.time.min.js │ │ ├── jquery.js │ │ └── jquery.min.js │ │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── spinning.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _spinning.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ ├── fullcalendar │ │ ├── changelog.txt │ │ ├── demos │ │ │ ├── agenda-views.html │ │ │ ├── basic-views.html │ │ │ ├── cupertino │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png │ │ │ │ │ ├── ui-bg_flat_15_cd0a0a_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_e4f1fb_1x400.png │ │ │ │ │ ├── ui-bg_glass_50_3baae3_1x400.png │ │ │ │ │ ├── ui-bg_glass_80_d7ebf9_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_70_000000_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_deedf7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_25_ffef8f_1x100.png │ │ │ │ │ ├── ui-icons_2694e8_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_3d80b3_256x240.png │ │ │ │ │ ├── ui-icons_72a7cf_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ └── jquery-ui.min.css │ │ │ ├── default.html │ │ │ ├── external-dragging.html │ │ │ ├── gcal.html │ │ │ ├── json-events.php │ │ │ ├── json.html │ │ │ ├── selectable.html │ │ │ └── theme.html │ │ ├── fullcalendar │ │ │ ├── fullcalendar.css │ │ │ ├── fullcalendar.js │ │ │ ├── fullcalendar.min.js │ │ │ ├── fullcalendar.print.css │ │ │ └── gcal.js │ │ ├── lib │ │ │ ├── jquery-ui.custom.min.js │ │ │ └── jquery.min.js │ │ └── license.txt │ │ ├── gmaps │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── bower.json │ │ ├── examples │ │ │ ├── basic.html │ │ │ ├── context_menu.html │ │ │ ├── custom_controls.html │ │ │ ├── elevation_locations.html │ │ │ ├── elevation_routes.html │ │ │ ├── examples.css │ │ │ ├── fusion_tables.html │ │ │ ├── geocoding.html │ │ │ ├── geofences.html │ │ │ ├── geolocation.html │ │ │ ├── geometry.html │ │ │ ├── kml.html │ │ │ ├── layers.html │ │ │ ├── layers_places.html │ │ │ ├── map_events.html │ │ │ ├── map_types.html │ │ │ ├── marker_clusterer.html │ │ │ ├── markers.html │ │ │ ├── overlay_map_types.html │ │ │ ├── overlays.html │ │ │ ├── polygons.html │ │ │ ├── polylines.html │ │ │ ├── routes.html │ │ │ ├── routes_advanced.html │ │ │ ├── static.html │ │ │ ├── static_markers.html │ │ │ ├── static_polylines.html │ │ │ ├── styled_maps.html │ │ │ └── travel_route.html │ │ ├── gmaps.js │ │ ├── lib │ │ │ ├── gmaps.controls.js │ │ │ ├── gmaps.core.js │ │ │ ├── gmaps.events.js │ │ │ ├── gmaps.geofences.js │ │ │ ├── gmaps.geometry.js │ │ │ ├── gmaps.layers.js │ │ │ ├── gmaps.map_types.js │ │ │ ├── gmaps.markers.js │ │ │ ├── gmaps.native_extensions.js │ │ │ ├── gmaps.overlays.js │ │ │ ├── gmaps.routes.js │ │ │ ├── gmaps.static.js │ │ │ ├── gmaps.streetview.js │ │ │ ├── gmaps.styles.js │ │ │ └── gmaps.utils.js │ │ ├── package.json │ │ └── test │ │ │ ├── index.html │ │ │ ├── lib │ │ │ ├── jasmine-html.js │ │ │ ├── jasmine.css │ │ │ └── jasmine.js │ │ │ ├── spec │ │ │ ├── EventSpec.js │ │ │ ├── GeometrySpec.js │ │ │ ├── LayerSpec.js │ │ │ ├── MapSpec.js │ │ │ ├── MarkerSpec.js │ │ │ ├── OverlaySpec.js │ │ │ ├── RouteSpec.js │ │ │ ├── StreetViewSpec.js │ │ │ └── StyleSpec.js │ │ │ ├── style.css │ │ │ └── template │ │ │ └── jasmine-gmaps.html │ │ ├── gritter │ │ ├── README.markdown │ │ ├── css │ │ │ └── jquery.gritter.css │ │ ├── images │ │ │ ├── gritter-light.png │ │ │ ├── gritter-long.png │ │ │ ├── gritter.png │ │ │ ├── ie-spacer.gif │ │ │ └── trees.jpg │ │ ├── index.html │ │ ├── js │ │ │ ├── jquery.gritter.js │ │ │ └── jquery.gritter.min.js │ │ └── package.json │ │ ├── iCheck │ │ ├── README.md │ │ ├── demo │ │ │ ├── css │ │ │ │ ├── custom.css │ │ │ │ ├── custom.styl │ │ │ │ ├── icheck.png │ │ │ │ ├── ie │ │ │ │ │ ├── arrow-bottom.png │ │ │ │ │ ├── arrow-top.png │ │ │ │ │ ├── header-line.png │ │ │ │ │ ├── icon-fork.png │ │ │ │ │ ├── icon-github.png │ │ │ │ │ ├── icon-lab.png │ │ │ │ │ ├── icon-options.png │ │ │ │ │ └── icon-star.png │ │ │ │ ├── montserrat-bold.eot │ │ │ │ ├── montserrat-bold.svg │ │ │ │ ├── montserrat-bold.ttf │ │ │ │ ├── montserrat-bold.woff │ │ │ │ ├── montserrat-regular.eot │ │ │ │ ├── montserrat-regular.svg │ │ │ │ ├── montserrat-regular.ttf │ │ │ │ ├── montserrat-regular.woff │ │ │ │ └── normalize.css │ │ │ ├── index.html │ │ │ └── js │ │ │ │ ├── custom.js │ │ │ │ ├── jquery.js │ │ │ │ └── zepto.js │ │ ├── jquery.icheck.js │ │ ├── jquery.icheck.min.js │ │ ├── skins │ │ │ ├── all.css │ │ │ ├── flat │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── flat.css │ │ │ │ ├── flat.png │ │ │ │ ├── flat@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── futurico │ │ │ │ ├── futurico.css │ │ │ │ ├── futurico.png │ │ │ │ └── futurico@2x.png │ │ │ ├── line │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── blue.css │ │ │ │ ├── green.css │ │ │ │ ├── grey.css │ │ │ │ ├── line.css │ │ │ │ ├── line.png │ │ │ │ ├── line@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── pink.css │ │ │ │ ├── purple.css │ │ │ │ ├── red.css │ │ │ │ └── yellow.css │ │ │ ├── minimal │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── minimal.css │ │ │ │ ├── minimal.png │ │ │ │ ├── minimal@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── polaris │ │ │ │ ├── polaris.css │ │ │ │ ├── polaris.png │ │ │ │ └── polaris@2x.png │ │ │ ├── square │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── square.css │ │ │ │ ├── square.png │ │ │ │ ├── square@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ └── ui_sliders.html │ │ ├── zepto.icheck.js │ │ └── zepto.icheck.min.js │ │ ├── jQRangeSlider │ │ ├── GPL-License.txt │ │ ├── History.md │ │ ├── MIT-License.txt │ │ ├── Readme.md │ │ ├── css │ │ │ ├── classic-min.css │ │ │ ├── classic.css │ │ │ ├── iThing-min.css │ │ │ ├── iThing.css │ │ │ └── icons-classic │ │ │ │ ├── label.png │ │ │ │ ├── resultset_next.png │ │ │ │ └── resultset_previous.png │ │ ├── demo │ │ │ ├── dateSliderDemo.js │ │ │ ├── demo.js │ │ │ ├── editSliderDemo.js │ │ │ ├── img │ │ │ │ ├── calendar.png │ │ │ │ ├── classicTheme.png │ │ │ │ └── iThingTheme.png │ │ │ ├── index.html │ │ │ ├── lib │ │ │ │ └── jquery-ui │ │ │ │ │ ├── css │ │ │ │ │ └── smoothness │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ └── jquery-ui-1.8.10.custom.css │ │ │ │ │ └── js │ │ │ │ │ └── jquery-ui-1.8.16.custom.min.js │ │ │ ├── sliderDemo.js │ │ │ └── style.css │ │ ├── jQAllRangeSliders-min.js │ │ ├── jQAllRangeSliders-withRuler-min.js │ │ ├── jQDateRangeSlider-min.js │ │ ├── jQDateRangeSlider-withRuler-min.js │ │ ├── jQEditRangeSlider-min.js │ │ ├── jQEditRangeSlider-withRuler-min.js │ │ ├── jQRangeSlider-min.js │ │ ├── jQRangeSlider-withRuler-min.js │ │ └── lib │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── jquery-ui-1.8.16.custom.min.js │ │ │ ├── jquery-ui.license.txt │ │ │ ├── jquery.license.txt │ │ │ ├── jquery.mousewheel.license.txt │ │ │ └── jquery.mousewheel.min.js │ │ ├── jQuery-File-Upload │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── angularjs.html │ │ ├── basic-plus.html │ │ ├── basic.html │ │ ├── blueimp-file-upload.jquery.json │ │ ├── bower.json │ │ ├── cors │ │ │ ├── postmessage.html │ │ │ └── result.html │ │ ├── css │ │ │ ├── demo-ie8.css │ │ │ ├── demo.css │ │ │ ├── jquery.fileupload-ui-noscript.css │ │ │ ├── jquery.fileupload-ui.css │ │ │ └── style.css │ │ ├── img │ │ │ ├── loading.gif │ │ │ └── progressbar.gif │ │ ├── index.html │ │ ├── jquery-ui.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── cors │ │ │ │ ├── jquery.postmessage-transport.js │ │ │ │ └── jquery.xdr-transport.js │ │ │ ├── jquery.fileupload-angular.js │ │ │ ├── jquery.fileupload-audio.js │ │ │ ├── jquery.fileupload-image.js │ │ │ ├── jquery.fileupload-jquery-ui.js │ │ │ ├── jquery.fileupload-process.js │ │ │ ├── jquery.fileupload-ui.js │ │ │ ├── jquery.fileupload-validate.js │ │ │ ├── jquery.fileupload-video.js │ │ │ ├── jquery.fileupload.js │ │ │ ├── jquery.iframe-transport.js │ │ │ ├── main.js │ │ │ └── vendor │ │ │ │ └── jquery.ui.widget.js │ │ ├── package.json │ │ ├── server │ │ │ ├── gae-go │ │ │ │ ├── app.yaml │ │ │ │ ├── app │ │ │ │ │ └── main.go │ │ │ │ └── static │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── robots.txt │ │ │ ├── gae-python │ │ │ │ ├── app.yaml │ │ │ │ ├── main.py │ │ │ │ └── static │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── robots.txt │ │ │ ├── node │ │ │ │ ├── .gitignore │ │ │ │ ├── package.json │ │ │ │ ├── public │ │ │ │ │ └── files │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── server.js │ │ │ │ └── tmp │ │ │ │ │ └── .gitignore │ │ │ └── php │ │ │ │ ├── UploadHandler.php │ │ │ │ ├── files │ │ │ │ ├── .gitignore │ │ │ │ └── .htaccess │ │ │ │ └── index.php │ │ └── test │ │ │ ├── index.html │ │ │ └── test.js │ │ ├── jQuery-Knob │ │ ├── README.md │ │ ├── index.html │ │ ├── js │ │ │ ├── jquery.knob-rtl.js │ │ │ └── jquery.knob.js │ │ └── knob.jquery.json │ │ ├── jQuery-Smart-Wizard │ │ ├── README.md │ │ ├── images │ │ │ └── loader.gif │ │ ├── index.htm │ │ ├── js │ │ │ ├── jquery-2.0.0.min.js │ │ │ └── jquery.smartWizard.js │ │ ├── more_examples │ │ │ ├── services │ │ │ │ └── service.php │ │ │ ├── smartwizard2-ajax.htm │ │ │ └── smartwizard2-validation.php │ │ ├── smartwizard-autostep.htm │ │ ├── smartwizard2-ajax.htm │ │ ├── smartwizard2-multiple.htm │ │ ├── smartwizard2-validation.htm │ │ ├── smartwizard2-vertical.htm │ │ └── styles │ │ │ ├── demo_style.css │ │ │ ├── smart_wizard.css │ │ │ └── smart_wizard_vertical.css │ │ ├── jQuery-Tags-Input │ │ ├── README.md │ │ ├── bower.json │ │ ├── example.html │ │ ├── jquery.tagsinput.css │ │ ├── jquery.tagsinput.js │ │ ├── jquery.tagsinput.min.js │ │ └── test │ │ │ ├── fake_json_endpoint.html │ │ │ └── fake_plaintext_endpoint.html │ │ ├── jqGrid │ │ ├── css │ │ │ ├── ellipsis-xbl.xml │ │ │ └── ui.jqgrid.css │ │ ├── js │ │ │ ├── Changes.txt │ │ │ ├── i18n │ │ │ │ ├── grid.locale-ar.js │ │ │ │ ├── grid.locale-bg.js │ │ │ │ ├── grid.locale-bg1251.js │ │ │ │ ├── grid.locale-cat.js │ │ │ │ ├── grid.locale-cn.js │ │ │ │ ├── grid.locale-cs.js │ │ │ │ ├── grid.locale-da.js │ │ │ │ ├── grid.locale-de.js │ │ │ │ ├── grid.locale-dk.js │ │ │ │ ├── grid.locale-el.js │ │ │ │ ├── grid.locale-en.js │ │ │ │ ├── grid.locale-es.js │ │ │ │ ├── grid.locale-fa.js │ │ │ │ ├── grid.locale-fi.js │ │ │ │ ├── grid.locale-fr.js │ │ │ │ ├── grid.locale-gl.js │ │ │ │ ├── grid.locale-he.js │ │ │ │ ├── grid.locale-hr.js │ │ │ │ ├── grid.locale-hr1250.js │ │ │ │ ├── grid.locale-hu.js │ │ │ │ ├── grid.locale-id.js │ │ │ │ ├── grid.locale-is.js │ │ │ │ ├── grid.locale-it.js │ │ │ │ ├── grid.locale-ja.js │ │ │ │ ├── grid.locale-kr.js │ │ │ │ ├── grid.locale-lt.js │ │ │ │ ├── grid.locale-mne.js │ │ │ │ ├── grid.locale-nl.js │ │ │ │ ├── grid.locale-no.js │ │ │ │ ├── grid.locale-pl.js │ │ │ │ ├── grid.locale-pt-br.js │ │ │ │ ├── grid.locale-pt.js │ │ │ │ ├── grid.locale-ro.js │ │ │ │ ├── grid.locale-ru.js │ │ │ │ ├── grid.locale-sk.js │ │ │ │ ├── grid.locale-sr-latin.js │ │ │ │ ├── grid.locale-sr.js │ │ │ │ ├── grid.locale-sv.js │ │ │ │ ├── grid.locale-th.js │ │ │ │ ├── grid.locale-tr.js │ │ │ │ ├── grid.locale-tw.js │ │ │ │ ├── grid.locale-ua.js │ │ │ │ └── grid.locale-vi.js │ │ │ ├── install.txt │ │ │ ├── jquery-1.7.2.min.js │ │ │ ├── jquery.jqGrid.min.js │ │ │ └── jquery.jqGrid.src.js │ │ ├── plugins │ │ │ ├── grid.addons.js │ │ │ ├── grid.postext.js │ │ │ ├── grid.setcolumns.js │ │ │ ├── jquery.contextmenu.js │ │ │ ├── jquery.searchFilter.js │ │ │ ├── jquery.tablednd.js │ │ │ ├── searchFilter.css │ │ │ ├── ui.multiselect.css │ │ │ └── ui.multiselect.js │ │ └── src │ │ │ ├── JsonXml.js │ │ │ ├── css │ │ │ ├── ellipsis-xbl.xml │ │ │ ├── ui.jqgrid.css │ │ │ └── ui.multiselect.css │ │ │ ├── grid.base.js │ │ │ ├── grid.celledit.js │ │ │ ├── grid.common.js │ │ │ ├── grid.custom.js │ │ │ ├── grid.filter.js │ │ │ ├── grid.formedit.js │ │ │ ├── grid.grouping.js │ │ │ ├── grid.import.js │ │ │ ├── grid.inlinedit.js │ │ │ ├── grid.jqueryui.js │ │ │ ├── grid.loader.js │ │ │ ├── grid.subgrid.js │ │ │ ├── grid.tbltogrid.js │ │ │ ├── grid.treegrid.js │ │ │ ├── i18n │ │ │ ├── grid.locale-ar.js │ │ │ ├── grid.locale-bg.js │ │ │ ├── grid.locale-bg1251.js │ │ │ ├── grid.locale-cat.js │ │ │ ├── grid.locale-cn.js │ │ │ ├── grid.locale-cs.js │ │ │ ├── grid.locale-da.js │ │ │ ├── grid.locale-de.js │ │ │ ├── grid.locale-dk.js │ │ │ ├── grid.locale-el.js │ │ │ ├── grid.locale-en.js │ │ │ ├── grid.locale-es.js │ │ │ ├── grid.locale-fa.js │ │ │ ├── grid.locale-fi.js │ │ │ ├── grid.locale-fr.js │ │ │ ├── grid.locale-gl.js │ │ │ ├── grid.locale-he.js │ │ │ ├── grid.locale-hr.js │ │ │ ├── grid.locale-hr1250.js │ │ │ ├── grid.locale-hu.js │ │ │ ├── grid.locale-id.js │ │ │ ├── grid.locale-is.js │ │ │ ├── grid.locale-it.js │ │ │ ├── grid.locale-ja.js │ │ │ ├── grid.locale-kr.js │ │ │ ├── grid.locale-lt.js │ │ │ ├── grid.locale-mne.js │ │ │ ├── grid.locale-nl.js │ │ │ ├── grid.locale-no.js │ │ │ ├── grid.locale-pl.js │ │ │ ├── grid.locale-pt-br.js │ │ │ ├── grid.locale-pt.js │ │ │ ├── grid.locale-ro.js │ │ │ ├── grid.locale-ru.js │ │ │ ├── grid.locale-sk.js │ │ │ ├── grid.locale-sr-latin.js │ │ │ ├── grid.locale-sr.js │ │ │ ├── grid.locale-sv.js │ │ │ ├── grid.locale-th.js │ │ │ ├── grid.locale-tr.js │ │ │ ├── grid.locale-tw.js │ │ │ ├── grid.locale-ua.js │ │ │ └── grid.locale-vi.js │ │ │ ├── jqDnR.js │ │ │ ├── jqModal.js │ │ │ └── jquery.fmatter.js │ │ ├── jquery-address │ │ ├── address.css │ │ └── address.js │ │ ├── jquery-cookie │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── .tm_properties │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── MIT-LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── cookie.jquery.json │ │ ├── jquery.cookie.js │ │ ├── package.json │ │ └── test │ │ │ ├── index.html │ │ │ ├── malformed_cookie.html │ │ │ ├── server.js │ │ │ └── tests.js │ │ ├── jquery-easy-pie-chart │ │ ├── Makefile │ │ ├── Readme.md │ │ ├── examples │ │ │ ├── excanvas.js │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── img │ │ │ └── easy-pie-chart.png │ │ ├── jquery.easy-pie-chart.coffee │ │ └── jquery.easy-pie-chart.js │ │ ├── jquery-inputlimiter │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ ├── LICENSE.txt.svn-base │ │ │ │ ├── demo.htm.svn-base │ │ │ │ ├── jquery-1.7.2.min.js.svn-base │ │ │ │ ├── jquery.inputlimiter.1.0.css.svn-base │ │ │ │ ├── jquery.inputlimiter.1.3.1.js.svn-base │ │ │ │ └── jquery.inputlimiter.1.3.1.min.js.svn-base │ │ ├── LICENSE.txt │ │ ├── demo.htm │ │ ├── jquery-1.7.2.min.js │ │ ├── jquery.inputlimiter.1.0.css │ │ ├── jquery.inputlimiter.1.3.1.js │ │ └── jquery.inputlimiter.1.3.1.min.js │ │ ├── jquery-maskmoney │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.html │ │ ├── jquery.maskMoney.js │ │ └── maskmoney.jquery.json │ │ ├── jquery-migrate │ │ └── jquery-migrate-1.2.1.min.js │ │ ├── jquery-mockjax │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── jquery.mockjax.js │ │ ├── lib │ │ │ ├── jquery-1.3.2.js │ │ │ ├── jquery-1.4.4.js │ │ │ ├── jquery-1.5.2.js │ │ │ ├── jquery-1.6.4.js │ │ │ ├── jquery-1.7.2.js │ │ │ ├── jquery-1.8.3.js │ │ │ ├── jquery-1.9.1.js │ │ │ ├── jquery-2.0.0.js │ │ │ ├── jquery.xmldom.js │ │ │ ├── json2.js │ │ │ ├── qunit.css │ │ │ ├── qunit.js │ │ │ └── testswarm.js │ │ ├── package.json │ │ ├── test │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── test.js │ │ │ ├── test.json │ │ │ ├── test_jsonp.js │ │ │ ├── test_proxy.json │ │ │ └── test_script.js │ │ └── testswarm.json │ │ ├── jquery-ui-touch-punch │ │ ├── README.md │ │ ├── jquery.ui.touch-punch.js │ │ └── jquery.ui.touch-punch.min.js │ │ ├── jquery-ui │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── jquery-ui-1.10.1.custom.css │ │ ├── jquery-ui-1.10.1.custom.min.css │ │ ├── jquery-ui-1.10.1.custom.min.js │ │ ├── jquery-ui-1.10.2.custom.min.js │ │ └── jquery-ui-1.9.2.custom.min.js │ │ ├── jquery-validation │ │ ├── README.md │ │ ├── changelog.txt │ │ ├── demo │ │ │ ├── ajaxSubmit-integration-demo.html │ │ │ ├── captcha │ │ │ │ ├── captcha.js │ │ │ │ ├── fonts │ │ │ │ │ └── Anorexia.ttf │ │ │ │ ├── image_req.php │ │ │ │ ├── images │ │ │ │ │ ├── button.png │ │ │ │ │ └── image.php │ │ │ │ ├── index.php │ │ │ │ ├── newsession.php │ │ │ │ ├── process.php │ │ │ │ ├── rand.php │ │ │ │ └── style.css │ │ │ ├── css │ │ │ │ ├── cmxform.css │ │ │ │ ├── cmxformTemplate.css │ │ │ │ ├── core.css │ │ │ │ ├── reset.css │ │ │ │ └── screen.css │ │ │ ├── custom-messages-data-demo.html │ │ │ ├── custom-methods-demo.html │ │ │ ├── dynamic-totals.html │ │ │ ├── errorcontainer-demo.html │ │ │ ├── file_input.html │ │ │ ├── images │ │ │ │ ├── bg.gif │ │ │ │ ├── checked.gif │ │ │ │ ├── cmxform-divider.gif │ │ │ │ ├── cmxform-fieldset.gif │ │ │ │ ├── loading.gif │ │ │ │ └── unchecked.gif │ │ │ ├── index.html │ │ │ ├── jquerymobile.html │ │ │ ├── login │ │ │ │ ├── images │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── header1.jpg │ │ │ │ │ ├── page.gif │ │ │ │ │ └── required_star.gif │ │ │ │ ├── index.html │ │ │ │ └── screen.css │ │ │ ├── marketo │ │ │ │ ├── images │ │ │ │ │ ├── backRequiredGray.gif │ │ │ │ │ ├── back_green-fade.gif │ │ │ │ │ ├── back_nav_blue.gif │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── button-submit.gif │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── help.png │ │ │ │ │ ├── left-nav-callout-long.png │ │ │ │ │ ├── login-sprite.gif │ │ │ │ │ ├── logo_marketo.gif │ │ │ │ │ ├── sf.png │ │ │ │ │ ├── step1-24.gif │ │ │ │ │ ├── step2-24.gif │ │ │ │ │ ├── step3-24.gif │ │ │ │ │ ├── tab-sprite.gif │ │ │ │ │ ├── tab_green.gif │ │ │ │ │ ├── time.png │ │ │ │ │ ├── toggle.gif │ │ │ │ │ └── warning.gif │ │ │ │ ├── index.html │ │ │ │ ├── jquery.maskedinput.js │ │ │ │ ├── mktSignup.js │ │ │ │ ├── step2.htm │ │ │ │ └── stylesheet.css │ │ │ ├── milk │ │ │ │ ├── bg.gif │ │ │ │ ├── index.html │ │ │ │ ├── left_white.png │ │ │ │ ├── milk.css │ │ │ │ ├── milk.png │ │ │ │ └── right_white.png │ │ │ ├── multipart │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jquery.maskedinput-1.0.js │ │ │ │ │ ├── ui.accordion.js │ │ │ │ │ └── ui.core.js │ │ │ │ └── style.css │ │ │ ├── radio-checkbox-select-demo.html │ │ │ ├── tabs │ │ │ │ └── index.html │ │ │ ├── themerollered.html │ │ │ └── tinymce │ │ │ │ ├── index.html │ │ │ │ ├── themes │ │ │ │ └── simple │ │ │ │ │ ├── editor_template.js │ │ │ │ │ ├── img │ │ │ │ │ └── icons.gif │ │ │ │ │ ├── langs │ │ │ │ │ └── en.js │ │ │ │ │ └── skins │ │ │ │ │ └── default │ │ │ │ │ └── ui.css │ │ │ │ └── tiny_mce.js │ │ ├── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ ├── lib │ │ │ ├── jquery-1.6.4.js │ │ │ ├── jquery-1.7.2.js │ │ │ ├── jquery-1.8.3.js │ │ │ ├── jquery-1.9.0.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.js │ │ │ └── jquery.mockjax.js │ │ ├── localization │ │ │ ├── messages_ar.js │ │ │ ├── messages_bg.js │ │ │ ├── messages_ca.js │ │ │ ├── messages_cs.js │ │ │ ├── messages_da.js │ │ │ ├── messages_de.js │ │ │ ├── messages_el.js │ │ │ ├── messages_es.js │ │ │ ├── messages_et.js │ │ │ ├── messages_eu.js │ │ │ ├── messages_fa.js │ │ │ ├── messages_fi.js │ │ │ ├── messages_fr.js │ │ │ ├── messages_he.js │ │ │ ├── messages_hr.js │ │ │ ├── messages_hu.js │ │ │ ├── messages_it.js │ │ │ ├── messages_ja.js │ │ │ ├── messages_ka.js │ │ │ ├── messages_kk.js │ │ │ ├── messages_ko.js │ │ │ ├── messages_lt.js │ │ │ ├── messages_lv.js │ │ │ ├── messages_my.js │ │ │ ├── messages_nl.js │ │ │ ├── messages_no.js │ │ │ ├── messages_pl.js │ │ │ ├── messages_pt_BR.js │ │ │ ├── messages_pt_PT.js │ │ │ ├── messages_ro.js │ │ │ ├── messages_ru.js │ │ │ ├── messages_si.js │ │ │ ├── messages_sk.js │ │ │ ├── messages_sl.js │ │ │ ├── messages_sr.js │ │ │ ├── messages_sv.js │ │ │ ├── messages_th.js │ │ │ ├── messages_tr.js │ │ │ ├── messages_uk.js │ │ │ ├── messages_vi.js │ │ │ ├── messages_zh.js │ │ │ ├── messages_zh_TW.js │ │ │ ├── methods_de.js │ │ │ ├── methods_nl.js │ │ │ └── methods_pt.js │ │ ├── package.json │ │ └── test │ │ │ ├── events.html │ │ │ ├── firebug │ │ │ ├── errorIcon.png │ │ │ ├── firebug.css │ │ │ ├── firebug.html │ │ │ ├── firebug.js │ │ │ ├── firebugx.js │ │ │ ├── infoIcon.png │ │ │ └── warningIcon.png │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── large.html │ │ │ ├── messages.js │ │ │ ├── methods.js │ │ │ ├── qunit │ │ │ ├── qunit.css │ │ │ └── qunit.js │ │ │ ├── rules.js │ │ │ ├── selects │ │ │ └── index.html │ │ │ ├── tabs.html │ │ │ └── test.js │ │ ├── jquery.maskedinput │ │ ├── .gitignore │ │ ├── Jakefile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── demo │ │ │ ├── datepicker.html │ │ │ └── index.html │ │ ├── dist │ │ │ ├── jquery.maskedinput.js │ │ │ └── jquery.maskedinput.min.js │ │ ├── lib │ │ │ ├── jquery-1.8.3.min.js │ │ │ └── jquery-1.9.0.min.js │ │ ├── maskedinput.jquery.json │ │ ├── plugin.json │ │ ├── spec │ │ │ ├── Backspace.Spec.js │ │ │ ├── Delete.spec.js │ │ │ ├── Escape.Spec.js │ │ │ ├── Focus.Spec.js │ │ │ ├── Paste.Spec.js │ │ │ ├── Raw.Spec.js │ │ │ ├── Setup.Spec.js │ │ │ ├── SpecRunner.html │ │ │ ├── Typing.Spec.js │ │ │ └── lib │ │ │ │ ├── jasmine-species │ │ │ │ ├── BSD.LICENSE │ │ │ │ ├── jasmine-be-calm.css │ │ │ │ ├── jasmine-grammar.js │ │ │ │ ├── jasmine-reporting.js │ │ │ │ └── version.json │ │ │ │ ├── jasmine │ │ │ │ ├── MIT.LICENSE │ │ │ │ ├── jasmine-html.js │ │ │ │ ├── jasmine.css │ │ │ │ └── jasmine.js │ │ │ │ ├── jquery.keymasher.js │ │ │ │ └── matchers.js │ │ ├── src │ │ │ └── jquery.maskedinput.js │ │ └── templates │ │ │ └── jquery.maskedinput.template │ │ ├── jquery.pulsate │ │ ├── jquery.pulsate.js │ │ └── jquery.pulsate.min.js │ │ ├── jquery.sparkline │ │ └── jquery.sparkline.js │ │ ├── ladda-bootstrap │ │ ├── .DS_Store │ │ ├── LICENSE │ │ ├── README.md │ │ ├── css │ │ │ ├── ladda-theme.scss │ │ │ ├── ladda.scss │ │ │ └── prism.css │ │ ├── dist │ │ │ ├── ladda-themeless.min.css │ │ │ ├── ladda.min.css │ │ │ ├── ladda.min.js │ │ │ └── spin.min.js │ │ ├── index.html │ │ ├── js │ │ │ ├── ladda.js │ │ │ ├── prism.js │ │ │ └── spin.js │ │ └── params.json │ │ ├── less │ │ └── less-1.5.0.min.js │ │ ├── moment │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── ender.js │ │ ├── lang │ │ │ ├── ar-ma.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── br.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cv.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── ml.js │ │ │ ├── mr.js │ │ │ ├── ms-my.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tzm-la.js │ │ │ ├── tzm.js │ │ │ ├── uk.js │ │ │ ├── vn.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ ├── min │ │ │ ├── langs.js │ │ │ ├── langs.min.js │ │ │ ├── moment+langs.js │ │ │ ├── moment+langs.min.js │ │ │ └── moment.min.js │ │ ├── moment.js │ │ ├── package.js │ │ ├── package.json │ │ ├── readme.md │ │ ├── tasks │ │ │ ├── component.js │ │ │ ├── embed_languages.js │ │ │ ├── history.js │ │ │ ├── size.js │ │ │ └── zones.js │ │ └── test │ │ │ ├── lang │ │ │ ├── ar-ma.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── br.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cv.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── ml.js │ │ │ ├── mr.js │ │ │ ├── ms-my.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tzm-la.js │ │ │ ├── tzm.js │ │ │ ├── uk.js │ │ │ ├── vn.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ │ └── moment │ │ │ ├── add_subtract.js │ │ │ ├── create.js │ │ │ ├── days_in_month.js │ │ │ ├── diff.js │ │ │ ├── duration.js │ │ │ ├── format.js │ │ │ ├── getters_setters.js │ │ │ ├── is_after.js │ │ │ ├── is_before.js │ │ │ ├── is_moment.js │ │ │ ├── is_same.js │ │ │ ├── is_valid.js │ │ │ ├── lang.js │ │ │ ├── leapyear.js │ │ │ ├── listers.js │ │ │ ├── min_max.js │ │ │ ├── mutable.js │ │ │ ├── normalizeUnits.js │ │ │ ├── preparse_postformat.js │ │ │ ├── sod_eod.js │ │ │ ├── string_prototype.js │ │ │ ├── utc.js │ │ │ ├── week_year.js │ │ │ ├── weekday.js │ │ │ ├── weeks.js │ │ │ └── zones.js │ │ ├── nestable │ │ ├── README.md │ │ ├── index.html │ │ └── jquery.nestable.js │ │ ├── perfect-scrollbar │ │ ├── .csslintrc │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── examples │ │ │ ├── azusa.jpg │ │ │ ├── options-default.html │ │ │ ├── options-minScrollbarLength.html │ │ │ ├── options-suppressScrollAxis.html │ │ │ ├── options-useBothWheelAxes.html │ │ │ ├── options-wheelPropagation.html │ │ │ ├── options-wheelSpeed.html │ │ │ └── text-content.html │ │ ├── min │ │ │ ├── perfect-scrollbar-0.4.6.min.css │ │ │ ├── perfect-scrollbar-0.4.6.min.js │ │ │ └── perfect-scrollbar-0.4.6.with-mousewheel.min.js │ │ ├── package.json │ │ ├── perfect-scrollbar.jquery.json │ │ └── src │ │ │ ├── jquery.mousewheel.js │ │ │ ├── perfect-scrollbar.css │ │ │ └── perfect-scrollbar.js │ │ ├── rainyday │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── demo.html │ │ └── rainyday.js │ │ ├── respond.min.js │ │ ├── select2 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── release.sh │ │ ├── select2-spinner.gif │ │ ├── select2.css │ │ ├── select2.jquery.json │ │ ├── select2.js │ │ ├── select2.min.js │ │ ├── select2.png │ │ ├── select2_locale_ar.js │ │ ├── select2_locale_bg.js │ │ ├── select2_locale_ca.js │ │ ├── select2_locale_cs.js │ │ ├── select2_locale_da.js │ │ ├── select2_locale_de.js │ │ ├── select2_locale_el.js │ │ ├── select2_locale_en.js.template │ │ ├── select2_locale_es.js │ │ ├── select2_locale_et.js │ │ ├── select2_locale_eu.js │ │ ├── select2_locale_fa.js │ │ ├── select2_locale_fi.js │ │ ├── select2_locale_fr.js │ │ ├── select2_locale_gl.js │ │ ├── select2_locale_he.js │ │ ├── select2_locale_hr.js │ │ ├── select2_locale_hu.js │ │ ├── select2_locale_id.js │ │ ├── select2_locale_is.js │ │ ├── select2_locale_it.js │ │ ├── select2_locale_ja.js │ │ ├── select2_locale_ko.js │ │ ├── select2_locale_lt.js │ │ ├── select2_locale_lv.js │ │ ├── select2_locale_mk.js │ │ ├── select2_locale_ms.js │ │ ├── select2_locale_nl.js │ │ ├── select2_locale_no.js │ │ ├── select2_locale_pl.js │ │ ├── select2_locale_pt-BR.js │ │ ├── select2_locale_pt-PT.js │ │ ├── select2_locale_ro.js │ │ ├── select2_locale_ru.js │ │ ├── select2_locale_sk.js │ │ ├── select2_locale_sv.js │ │ ├── select2_locale_th.js │ │ ├── select2_locale_tr.js │ │ ├── select2_locale_ua.js │ │ ├── select2_locale_vi.js │ │ ├── select2_locale_zh-CN.js │ │ ├── select2_locale_zh-TW.js │ │ └── select2x2.png │ │ ├── summernote │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── bs2.html │ │ ├── build │ │ │ ├── summernote-bootstrap.css │ │ │ ├── summernote.css │ │ │ └── summernote.min.js │ │ ├── elements.less │ │ ├── index.html │ │ ├── package.json │ │ ├── summernote.js │ │ ├── summernote.less │ │ └── test │ │ │ ├── dom.spec.html │ │ │ ├── dom.spec.js │ │ │ ├── list.spec.html │ │ │ ├── list.spec.js │ │ │ ├── qunit-1.11.0.css │ │ │ ├── qunit-1.11.0.js │ │ │ ├── range.spec.html │ │ │ └── range.spec.js │ │ ├── typeaheadjs │ │ ├── lib │ │ │ ├── typeahead.js │ │ │ └── typeahead.js-bootstrap.css │ │ └── typeaheadjs.js │ │ ├── wysihtml5 │ │ ├── bootstrap-wysihtml5-0.0.2 │ │ │ ├── bootstrap-wysihtml5-0.0.2.css │ │ │ ├── bootstrap-wysihtml5-0.0.2.js │ │ │ ├── bootstrap-wysihtml5-0.0.2.min.js │ │ │ ├── bootstrap-wysihtml5.js │ │ │ ├── wysihtml5-0.3.0.js │ │ │ ├── wysihtml5-0.3.0.min.js │ │ │ └── wysiwyg-color.css │ │ └── wysihtml5.js │ │ └── x-editable │ │ ├── css │ │ └── bootstrap-editable.css │ │ ├── demo-mock.js │ │ ├── demo.js │ │ ├── img │ │ ├── clear.png │ │ └── loading.gif │ │ └── js │ │ ├── bootstrap-editable.js │ │ └── bootstrap-editable.min.js ├── bootstrap │ ├── css │ │ ├── bootstrap-responsive.min.css │ │ └── bootstrap.min.css │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ └── js │ │ └── bootstrap.min.js ├── category.php ├── change-password.php ├── closed-complaint.php ├── college.php ├── complaint-details.php ├── css │ └── theme.css ├── department.php ├── edit-category.php ├── edit-state.php ├── edit-subcategory.php ├── get_subcat.php ├── images │ ├── bg.png │ ├── icons │ │ ├── css │ │ │ └── font-awesome.css │ │ └── font │ │ │ ├── fontawesome-webfont3294.eot │ │ │ ├── fontawesome-webfont3294.ttf │ │ │ ├── fontawesome-webfont3294.woff │ │ │ └── fontawesome-webfontd41d.eot │ ├── img.jpg │ ├── jquery-ui │ │ └── picker.png │ └── user.png ├── include │ ├── config.php │ ├── footer.php │ ├── header.php │ └── sidebar.php ├── index.php ├── inprocess-complaint.php ├── logout.php ├── manage-users.php ├── notprocess-complaint.php ├── pending-orders.php ├── scripts │ ├── common.js │ ├── datatables │ │ └── jquery.dataTables.js │ ├── flot │ │ ├── jquery.flot.js │ │ ├── jquery.flot.pie.js │ │ └── jquery.flot.resize.js │ ├── jquery-1.9.1.min.js │ └── jquery-ui-1.10.1.custom.min.js ├── state.php ├── subcategory.php ├── university.php ├── updatecomplaint.php ├── user-logs.php └── userprofile.php ├── college ├── add-category.php ├── assets │ ├── css │ │ ├── main-responsive.css │ │ ├── main.css │ │ ├── print.css │ │ ├── rtl-version.css │ │ ├── theme_black_and_white.css │ │ ├── theme_dark.css │ │ ├── theme_green.css │ │ ├── theme_light.css │ │ └── theme_navy.css │ ├── fonts │ │ ├── fonts │ │ │ ├── clip-font.eot │ │ │ ├── clip-font.svg │ │ │ ├── clip-font.ttf │ │ │ └── clip-font.woff │ │ ├── lte-ie7.js │ │ └── style.css │ ├── js │ │ ├── charts.js │ │ ├── form-calendar.js │ │ ├── form-dropzone.js │ │ ├── form-elements.js │ │ ├── form-image-cropping.js │ │ ├── form-validation.js │ │ ├── form-wizard.js │ │ ├── index.js │ │ ├── login.js │ │ ├── main.js │ │ ├── maps.js │ │ ├── pages-gallery.js │ │ ├── pages-user-profile.js │ │ ├── table-data.js │ │ ├── ui-animation.js │ │ ├── ui-buttons.js │ │ ├── ui-elements.js │ │ ├── ui-modals.js │ │ ├── ui-nestable.js │ │ ├── ui-sliders.js │ │ ├── ui-treeview.js │ │ ├── utility-coming-soon.js │ │ └── utility-error404.js │ ├── less │ │ └── styles.less │ └── plugins │ │ ├── DataTables │ │ ├── Readme.txt │ │ ├── component.json │ │ ├── docs │ │ │ ├── 34cdb56b2c.html │ │ │ ├── DataTable.defaults.columns.html │ │ │ ├── DataTable.defaults.html │ │ │ ├── DataTable.defaults.oLanguage.html │ │ │ ├── DataTable.defaults.oLanguage.oAria.html │ │ │ ├── DataTable.defaults.oLanguage.oPaginate.html │ │ │ ├── DataTable.defaults.oSearch.html │ │ │ ├── DataTable.ext.html │ │ │ ├── DataTable.html │ │ │ ├── DataTable.models.ext.html │ │ │ ├── DataTable.models.html │ │ │ ├── DataTable.models.oColumn.html │ │ │ ├── DataTable.models.oRow.html │ │ │ ├── DataTable.models.oSearch.html │ │ │ ├── DataTable.models.oSettings.html │ │ │ ├── DataTable.models.oSettings.oBrowser.html │ │ │ ├── DataTable.models.oSettings.oFeatures.html │ │ │ ├── DataTable.models.oSettings.oLanguage.html │ │ │ ├── DataTable.models.oSettings.oPreviousSearch.html │ │ │ ├── DataTable.models.oSettings.oScroll.html │ │ │ ├── index.html │ │ │ └── media │ │ │ │ ├── css │ │ │ │ ├── doc.css │ │ │ │ ├── shCore.css │ │ │ │ └── shThemeDataTables.css │ │ │ │ ├── images │ │ │ │ ├── arrow.jpg │ │ │ │ ├── arrow.png │ │ │ │ └── extended.png │ │ │ │ ├── js │ │ │ │ ├── doc.js │ │ │ │ ├── jquery.js │ │ │ │ ├── shBrushJScript.js │ │ │ │ └── shCore.js │ │ │ │ └── license │ │ │ │ └── Syntax Highlighter │ │ ├── examples │ │ │ ├── advanced_init │ │ │ │ ├── column_render.html │ │ │ │ ├── complex_header.html │ │ │ │ ├── defaults.html │ │ │ │ ├── dom_multiple_elements.html │ │ │ │ ├── dom_toolbar.html │ │ │ │ ├── dt_events.html │ │ │ │ ├── events_live.html │ │ │ │ ├── events_post_init.html │ │ │ │ ├── events_pre_init.html │ │ │ │ ├── footer_callback.html │ │ │ │ ├── highlight.html │ │ │ │ ├── html_sort.html │ │ │ │ ├── language_file.html │ │ │ │ ├── length_menu.html │ │ │ │ ├── localstorage.html │ │ │ │ ├── row_callback.html │ │ │ │ ├── row_grouping.html │ │ │ │ └── sorting_control.html │ │ │ ├── ajax │ │ │ │ ├── ajax.html │ │ │ │ ├── custom_data_property.html │ │ │ │ ├── deep.html │ │ │ │ ├── defer_render.html │ │ │ │ ├── null_data_source.html │ │ │ │ ├── objects.html │ │ │ │ ├── objects_subarrays.html │ │ │ │ └── sources │ │ │ │ │ ├── array_only.txt │ │ │ │ │ ├── arrays.txt │ │ │ │ │ ├── arrays_subobjects.txt │ │ │ │ │ ├── custom_prop.txt │ │ │ │ │ ├── deep.txt │ │ │ │ │ ├── objects.txt │ │ │ │ │ └── objects_subarrays.txt │ │ │ ├── api │ │ │ │ ├── add_row.html │ │ │ │ ├── api_in_init.html │ │ │ │ ├── counter_column.html │ │ │ │ ├── editable.html │ │ │ │ ├── form.html │ │ │ │ ├── highlight.html │ │ │ │ ├── multi_filter.html │ │ │ │ ├── multi_filter_select.html │ │ │ │ ├── regex.html │ │ │ │ ├── row_details.html │ │ │ │ ├── select_row.html │ │ │ │ ├── select_single_row.html │ │ │ │ ├── show_hide.html │ │ │ │ └── tabs_and_scrolling.html │ │ │ ├── basic_init │ │ │ │ ├── alt_pagination.html │ │ │ │ ├── base.html │ │ │ │ ├── base_themeroller.html │ │ │ │ ├── complex_header.html │ │ │ │ ├── dom.html │ │ │ │ ├── filter_only.html │ │ │ │ ├── flexible_width.html │ │ │ │ ├── hidden_columns.html │ │ │ │ ├── language.html │ │ │ │ ├── multi_col_sort.html │ │ │ │ ├── multiple_tables.html │ │ │ │ ├── scroll_x.html │ │ │ │ ├── scroll_xy.html │ │ │ │ ├── scroll_y.html │ │ │ │ ├── scroll_y_infinite.html │ │ │ │ ├── scroll_y_theme.html │ │ │ │ ├── state_save.html │ │ │ │ ├── table_sorting.html │ │ │ │ ├── themes.html │ │ │ │ └── zero_config.html │ │ │ ├── data_sources │ │ │ │ ├── ajax.html │ │ │ │ ├── dom.html │ │ │ │ ├── js_array.html │ │ │ │ └── server_side.html │ │ │ ├── examples_support │ │ │ │ ├── data.sql │ │ │ │ ├── de_DE.txt │ │ │ │ ├── details_close.png │ │ │ │ ├── details_open.png │ │ │ │ ├── editable_ajax.php │ │ │ │ ├── index.html │ │ │ │ ├── infiniteScroll.php │ │ │ │ ├── jquery-ui-tabs.js │ │ │ │ ├── jquery.jeditable.js │ │ │ │ ├── jquery.tooltip.css │ │ │ │ ├── jquery.tooltip.js │ │ │ │ ├── syntax │ │ │ │ │ ├── css │ │ │ │ │ │ └── shCore.css │ │ │ │ │ ├── images │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ └── extended.png │ │ │ │ │ ├── js │ │ │ │ │ │ └── shCore.js │ │ │ │ │ └── license │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ └── themes │ │ │ │ │ ├── smoothness │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ └── jquery-ui-1.8.4.custom.css │ │ │ │ │ └── ui-lightness │ │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ └── jquery-ui-1.8.4.custom.css │ │ │ ├── index.html │ │ │ ├── plug-ins │ │ │ │ ├── dom_sort.html │ │ │ │ ├── html_sort.html │ │ │ │ ├── paging_plugin.html │ │ │ │ ├── plugin_api.html │ │ │ │ ├── range_filtering.html │ │ │ │ ├── sorting_plugin.html │ │ │ │ └── sorting_sType.html │ │ │ └── server_side │ │ │ │ ├── custom_vars.html │ │ │ │ ├── defer_loading.html │ │ │ │ ├── editable.html │ │ │ │ ├── ids.html │ │ │ │ ├── jsonp.html │ │ │ │ ├── object_data.html │ │ │ │ ├── pipeline.html │ │ │ │ ├── post.html │ │ │ │ ├── row_details.html │ │ │ │ ├── scripts │ │ │ │ ├── custom_data_property.php │ │ │ │ ├── details_col.php │ │ │ │ ├── filter_col.php │ │ │ │ ├── id.php │ │ │ │ ├── id_jsonp.php │ │ │ │ ├── jsonp.php │ │ │ │ ├── objects.php │ │ │ │ ├── objects_jsonp.php │ │ │ │ ├── post.php │ │ │ │ └── server_processing.php │ │ │ │ ├── select_rows.html │ │ │ │ └── server_side.html │ │ ├── extras │ │ │ ├── AutoFill │ │ │ │ ├── callbacks.html │ │ │ │ ├── columns.html │ │ │ │ ├── index.html │ │ │ │ ├── inputs.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ └── AutoFill.css │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── 02ff627f40.html │ │ │ │ │ │ ├── 36456bf45f.html │ │ │ │ │ │ ├── 47cac4f141.html │ │ │ │ │ │ ├── 5a72546831.html │ │ │ │ │ │ ├── 8ee4007a12.html │ │ │ │ │ │ ├── AutoFill.html │ │ │ │ │ │ ├── a69b02bcf2.html │ │ │ │ │ │ ├── b44bd4821a.html │ │ │ │ │ │ ├── c6945fdb4a.html │ │ │ │ │ │ ├── global.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── filler.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── AutoFill.js │ │ │ │ │ │ ├── AutoFill.min.js │ │ │ │ │ │ └── AutoFill.min.js.gz │ │ │ │ └── scrolling.html │ │ │ ├── ColReorder │ │ │ │ ├── alt_insert.html │ │ │ │ ├── col_filter.html │ │ │ │ ├── colvis.html │ │ │ │ ├── fixedcolumns.html │ │ │ │ ├── fixedheader.html │ │ │ │ ├── index.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ └── ColReorder.css │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── 46848f6f3b.html │ │ │ │ │ │ ├── 4f1246032c.html │ │ │ │ │ │ ├── ColReorder.html │ │ │ │ │ │ ├── a69b02bcf2.html │ │ │ │ │ │ ├── global.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── insert.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── ColReorder.js │ │ │ │ │ │ ├── ColReorder.min.js │ │ │ │ │ │ └── ColReorder.min.js.gz │ │ │ │ ├── predefined.html │ │ │ │ ├── reset.html │ │ │ │ ├── scrolling.html │ │ │ │ ├── server_side.html │ │ │ │ ├── state_save.html │ │ │ │ └── theme.html │ │ │ ├── ColVis │ │ │ │ ├── exclude_columns.html │ │ │ │ ├── index.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ ├── ColVis.css │ │ │ │ │ │ └── ColVisAlt.css │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── ColVis.html │ │ │ │ │ │ ├── a69b02bcf2.html │ │ │ │ │ │ ├── ccb5a49865.html │ │ │ │ │ │ ├── global.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── button.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── ColVis.js │ │ │ │ │ │ ├── ColVis.min.js │ │ │ │ │ │ └── ColVis.min.js.gz │ │ │ │ ├── mouseover.html │ │ │ │ ├── style.html │ │ │ │ ├── text.html │ │ │ │ ├── theme.html │ │ │ │ ├── title_callback.html │ │ │ │ ├── two_tables.html │ │ │ │ └── two_tables_identical.html │ │ │ ├── FixedColumns │ │ │ │ ├── col_filter.html │ │ │ │ ├── css_size.html │ │ │ │ ├── docs │ │ │ │ │ ├── 070023b890.html │ │ │ │ │ ├── 526f872207.html │ │ │ │ │ ├── 73098af57c.html │ │ │ │ │ ├── 889588ec06.html │ │ │ │ │ ├── 91bce7c4ad.html │ │ │ │ │ ├── FixedColumns.defaults.html │ │ │ │ │ ├── FixedColumns.html │ │ │ │ │ ├── a6bd52f587.html │ │ │ │ │ ├── d3890ba7c4.html │ │ │ │ │ ├── e20106c59a.html │ │ │ │ │ ├── global.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── media │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ └── license │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ ├── index.html │ │ │ │ ├── index_column.html │ │ │ │ ├── left_right_columns.html │ │ │ │ ├── media │ │ │ │ │ └── js │ │ │ │ │ │ ├── FixedColumns.js │ │ │ │ │ │ ├── FixedColumns.min.js │ │ │ │ │ │ └── FixedColumns.min.js.gz │ │ │ │ ├── right_column.html │ │ │ │ ├── row_grouping.html │ │ │ │ ├── row_grouping_height.html │ │ │ │ ├── rowspan.html │ │ │ │ ├── scale_fixed.html │ │ │ │ ├── scale_relative.html │ │ │ │ ├── server-side-processing.html │ │ │ │ ├── themed.html │ │ │ │ ├── two_columns.html │ │ │ │ └── x_y_scrolling.html │ │ │ ├── FixedHeader │ │ │ │ ├── html_table.html │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── FixedHeader.js │ │ │ │ │ ├── FixedHeader.min.js │ │ │ │ │ └── FixedHeader.min.js.gz │ │ │ │ ├── top_bottom_left_right.html │ │ │ │ ├── top_left.html │ │ │ │ ├── two_tables.html │ │ │ │ └── zIndexes.html │ │ │ ├── KeyTable │ │ │ │ ├── datatable.html │ │ │ │ ├── datatable_scrolling.html │ │ │ │ ├── editing.html │ │ │ │ ├── form.html │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ │ ├── KeyTable.js │ │ │ │ │ ├── KeyTable.min.js │ │ │ │ │ └── KeyTable.min.js.gz │ │ │ ├── Scroller │ │ │ │ ├── api_scrolling.html │ │ │ │ ├── index.html │ │ │ │ ├── large_js_source.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ └── dataTables.scroller.css │ │ │ │ │ ├── data │ │ │ │ │ │ ├── 2500.txt │ │ │ │ │ │ └── server_processing.php │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── Scroller.html │ │ │ │ │ │ ├── Scroller.oDefaults.html │ │ │ │ │ │ ├── baed189d4a.html │ │ │ │ │ │ ├── c6053fac6b.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── loading-background.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ │ │ ├── dataTables.scroller.min.js │ │ │ │ │ │ └── dataTables.scroller.min.js.gz │ │ │ │ ├── server-side_processing.html │ │ │ │ └── state_saving.html │ │ │ └── TableTools │ │ │ │ ├── alt_init.html │ │ │ │ ├── alter_buttons.html │ │ │ │ ├── bootstrap.html │ │ │ │ ├── button_text.html │ │ │ │ ├── collection.html │ │ │ │ ├── defaults.html │ │ │ │ ├── index.html │ │ │ │ ├── media │ │ │ │ ├── as3 │ │ │ │ │ ├── ZeroClipboard.as │ │ │ │ │ ├── ZeroClipboardPdf.as │ │ │ │ │ └── lib │ │ │ │ │ │ └── AlivePDF.swc │ │ │ │ ├── css │ │ │ │ │ ├── TableTools.css │ │ │ │ │ └── TableTools_JUI.css │ │ │ │ ├── images │ │ │ │ │ ├── background.png │ │ │ │ │ ├── collection.png │ │ │ │ │ ├── collection_hover.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── copy_hover.png │ │ │ │ │ ├── csv.png │ │ │ │ │ ├── csv_hover.png │ │ │ │ │ ├── pdf.png │ │ │ │ │ ├── pdf_hover.png │ │ │ │ │ ├── print.png │ │ │ │ │ ├── print_hover.png │ │ │ │ │ ├── psd │ │ │ │ │ │ ├── collection.psd │ │ │ │ │ │ ├── copy document.psd │ │ │ │ │ │ ├── file_types.psd │ │ │ │ │ │ └── printer.psd │ │ │ │ │ ├── xls.png │ │ │ │ │ └── xls_hover.png │ │ │ │ ├── js │ │ │ │ │ ├── TableTools.js │ │ │ │ │ ├── TableTools.min.js │ │ │ │ │ ├── TableTools.min.js.gz │ │ │ │ │ └── ZeroClipboard.js │ │ │ │ └── swf │ │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ │ └── copy_csv_xls_pdf.swf │ │ │ │ ├── multi_instance.html │ │ │ │ ├── multiple_tables.html │ │ │ │ ├── pdf_message.html │ │ │ │ ├── plug-in.html │ │ │ │ ├── select_multi.html │ │ │ │ ├── select_single.html │ │ │ │ ├── swf_path.html │ │ │ │ ├── tabs.html │ │ │ │ └── theme.html │ │ ├── license-bsd.txt │ │ ├── license-gpl2.txt │ │ ├── media │ │ │ ├── css │ │ │ │ ├── DT_bootstrap.css │ │ │ │ ├── demo_page.css │ │ │ │ ├── demo_table.css │ │ │ │ ├── demo_table_jui.css │ │ │ │ ├── images │ │ │ │ │ ├── Sorting icons.psd │ │ │ │ │ ├── back_disabled.png │ │ │ │ │ ├── back_enabled.png │ │ │ │ │ ├── back_enabled_hover.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── forward_disabled.png │ │ │ │ │ ├── forward_enabled.png │ │ │ │ │ ├── forward_enabled_hover.png │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ ├── sort_both.png │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ ├── jquery.dataTables.css │ │ │ │ └── jquery.dataTables_themeroller.css │ │ │ ├── js │ │ │ │ ├── DT_bootstrap.js │ │ │ │ ├── jquery.dataTables.editable.js │ │ │ │ ├── jquery.dataTables.js │ │ │ │ ├── jquery.dataTables.min.js │ │ │ │ └── jquery.js │ │ │ ├── src │ │ │ │ ├── DataTables.js │ │ │ │ ├── api │ │ │ │ │ ├── api.internal.js │ │ │ │ │ ├── api.methods.js │ │ │ │ │ └── api.static.js │ │ │ │ ├── core │ │ │ │ │ ├── core.ajax.js │ │ │ │ │ ├── core.columns.js │ │ │ │ │ ├── core.constructor.js │ │ │ │ │ ├── core.data.js │ │ │ │ │ ├── core.draw.js │ │ │ │ │ ├── core.filter.js │ │ │ │ │ ├── core.info.js │ │ │ │ │ ├── core.init.js │ │ │ │ │ ├── core.length.js │ │ │ │ │ ├── core.page.js │ │ │ │ │ ├── core.processing.js │ │ │ │ │ ├── core.scrolling.js │ │ │ │ │ ├── core.sizing.js │ │ │ │ │ ├── core.sort.js │ │ │ │ │ ├── core.state.js │ │ │ │ │ └── core.support.js │ │ │ │ ├── ext │ │ │ │ │ ├── ext.classes.js │ │ │ │ │ ├── ext.paging.js │ │ │ │ │ ├── ext.sorting.js │ │ │ │ │ └── ext.types.js │ │ │ │ └── model │ │ │ │ │ ├── model.column.js │ │ │ │ │ ├── model.defaults.columns.js │ │ │ │ │ ├── model.defaults.js │ │ │ │ │ ├── model.ext.js │ │ │ │ │ ├── model.row.js │ │ │ │ │ ├── model.search.js │ │ │ │ │ └── model.settings.js │ │ │ └── unit_testing │ │ │ │ ├── controller.js │ │ │ │ ├── controller.php │ │ │ │ ├── index.html │ │ │ │ ├── performance │ │ │ │ ├── draw.html │ │ │ │ ├── large.php │ │ │ │ ├── page.html │ │ │ │ └── sort.html │ │ │ │ ├── templates │ │ │ │ ├── -complex_header.php │ │ │ │ ├── 2512.php │ │ │ │ ├── 6776.php │ │ │ │ ├── complex_header_2.php │ │ │ │ ├── deferred_table.php │ │ │ │ ├── dom_data.php │ │ │ │ ├── dom_data_th.php │ │ │ │ ├── dom_data_two_headers.php │ │ │ │ ├── dymanic_table.php │ │ │ │ ├── empty_table.php │ │ │ │ ├── html_table.php │ │ │ │ ├── js_data.php │ │ │ │ ├── js_data_mixed_types.php │ │ │ │ └── two_tables.php │ │ │ │ ├── tests │ │ │ │ └── 1_dom │ │ │ │ │ └── _zero_config.js │ │ │ │ ├── tests_onhold │ │ │ │ ├── 1_dom │ │ │ │ │ ├── -complex_header.js │ │ │ │ │ ├── -iDraw.js │ │ │ │ │ ├── 2512.js │ │ │ │ │ ├── 2530-2.js │ │ │ │ │ ├── 2530.js │ │ │ │ │ ├── 2569.js │ │ │ │ │ ├── 2600.js │ │ │ │ │ ├── 2608.js │ │ │ │ │ ├── 2635.js │ │ │ │ │ ├── 2746-stable-sort.js │ │ │ │ │ ├── 2799.js │ │ │ │ │ ├── 2840-restore-table-width.js │ │ │ │ │ ├── 2914-state-save-sort.js │ │ │ │ │ ├── 5396-fnUpdate-arrays-mData.js │ │ │ │ │ ├── 5396-fnUpdate-arrays.js │ │ │ │ │ ├── 5508-xscroll-zero-content.js │ │ │ │ │ ├── 6776-scrolling-table-grows.js │ │ │ │ │ ├── _getDataFunctions.js │ │ │ │ │ ├── _setDataFunctions.js │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.bVisible2.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfiniteScroll.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bJQueryUI.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortCellsTop.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnCookieCallback.js │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ ├── fnDeleteRow.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnFilter.js │ │ │ │ │ ├── fnFooterCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInfoCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── fnSetColumnVis.js │ │ │ │ │ ├── fnSetColumnVis2.js │ │ │ │ │ ├── html-autodetect-sort.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ ├── sPaginationType.js │ │ │ │ │ ├── sScrollXY.js │ │ │ │ │ └── th_in_body.js │ │ │ │ ├── 2_js │ │ │ │ │ ├── 39-nested-null.js │ │ │ │ │ ├── 6872-default-content-missing-props.js │ │ │ │ │ ├── 8549--string-sorting-nonstrings.js │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnFooterCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── js_data_mixed_types.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ ├── 3_ajax │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── fnServerData.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sLoadingRecords.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxDataProp.js │ │ │ │ │ ├── sAjaxDataProp2.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ ├── 4_server-side │ │ │ │ │ ├── -iDraw.js │ │ │ │ │ ├── 2440.js │ │ │ │ │ ├── 2569.js │ │ │ │ │ ├── 2600.js │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfiniteScroll.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── iDeferLoading.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxDataProp.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ ├── 5_ajax_objects │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── _zero_config_arrays_subobjects.js │ │ │ │ │ ├── _zero_config_deep.js │ │ │ │ │ ├── _zero_config_mDataProp.js │ │ │ │ │ ├── _zero_config_null_source.js │ │ │ │ │ ├── _zero_config_objects.js │ │ │ │ │ ├── _zero_config_objects_subarrays.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── fnServerData.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ └── 6_delayed_rendering │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── fnServerData.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxDataProp.js │ │ │ │ │ ├── sAjaxDataProp2.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ └── unit_test.js │ │ ├── package.json │ │ └── scripts │ │ │ ├── jshint.config │ │ │ ├── make.sh │ │ │ └── unit_tests.sh │ │ ├── Jcrop │ │ ├── MIT-LICENSE.txt │ │ ├── README.md │ │ ├── css │ │ │ ├── Jcrop.gif │ │ │ ├── jquery.Jcrop.css │ │ │ └── jquery.Jcrop.min.css │ │ ├── demos │ │ │ ├── crop.php │ │ │ ├── demo_files │ │ │ │ ├── demos.css │ │ │ │ ├── main.css │ │ │ │ ├── pool.jpg │ │ │ │ ├── sago.jpg │ │ │ │ ├── sagomod.jpg │ │ │ │ └── sagomod.png │ │ │ ├── non-image.html │ │ │ ├── styling.html │ │ │ ├── tutorial1.html │ │ │ ├── tutorial2.html │ │ │ ├── tutorial3.html │ │ │ ├── tutorial4.html │ │ │ └── tutorial5.html │ │ ├── index.html │ │ └── js │ │ │ ├── jquery.Jcrop.js │ │ │ ├── jquery.Jcrop.min.js │ │ │ ├── jquery.color.js │ │ │ └── jquery.min.js │ │ ├── autosize │ │ ├── autosize.jquery.json │ │ ├── bower.json │ │ ├── demo.html │ │ ├── jquery.autosize.js │ │ ├── jquery.autosize.min.js │ │ ├── package.json │ │ └── readme.md │ │ ├── blockUI │ │ └── jquery.blockUI.js │ │ ├── bootstrap-colorpalette │ │ ├── README.md │ │ ├── css │ │ │ ├── bootstrap-colorpalette.css │ │ │ └── example.css │ │ ├── example.html │ │ └── js │ │ │ └── bootstrap-colorpalette.js │ │ ├── bootstrap-colorpicker │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── css │ │ │ └── bootstrap-colorpicker.css │ │ ├── img │ │ │ └── bootstrap-colorpicker │ │ │ │ ├── alpha.png │ │ │ │ ├── hue.png │ │ │ │ └── saturation.png │ │ ├── index.html │ │ ├── js │ │ │ ├── bootstrap-colorpicker.js │ │ │ └── commits.js │ │ └── less │ │ │ └── bootstrap-colorpicker.less │ │ ├── bootstrap-datepicker │ │ ├── .gitignore │ │ ├── .hgignore │ │ ├── .hgtags │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ │ ├── build.less │ │ │ └── build_standalone.less │ │ ├── composer.json │ │ ├── css │ │ │ └── datepicker.css │ │ ├── docs │ │ │ ├── Makefile │ │ │ ├── _static │ │ │ │ └── demo_head.png │ │ │ ├── conf.py │ │ │ ├── events.rst │ │ │ ├── i18n.rst │ │ │ ├── index.rst │ │ │ ├── keyboard.rst │ │ │ ├── make.bat │ │ │ ├── markup.rst │ │ │ ├── methods.rst │ │ │ └── options.rst │ │ ├── js │ │ │ ├── bootstrap-datepicker.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datepicker.ar.js │ │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ │ ├── bootstrap-datepicker.cy.js │ │ │ │ ├── bootstrap-datepicker.da.js │ │ │ │ ├── bootstrap-datepicker.de.js │ │ │ │ ├── bootstrap-datepicker.el.js │ │ │ │ ├── bootstrap-datepicker.es.js │ │ │ │ ├── bootstrap-datepicker.et.js │ │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ │ ├── bootstrap-datepicker.he.js │ │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ │ ├── bootstrap-datepicker.id.js │ │ │ │ ├── bootstrap-datepicker.is.js │ │ │ │ ├── bootstrap-datepicker.it.js │ │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ │ ├── bootstrap-datepicker.ka.js │ │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ │ ├── bootstrap-datepicker.mk.js │ │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ │ ├── bootstrap-datepicker.nl-BE.js │ │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ │ ├── bootstrap-datepicker.no.js │ │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ │ ├── bootstrap-datepicker.sq.js │ │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ │ ├── bootstrap-datepicker.th.js │ │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ │ ├── bootstrap-datepicker.ua.js │ │ │ │ ├── bootstrap-datepicker.uk.js │ │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ ├── less │ │ │ └── datepicker.less │ │ └── tests │ │ │ ├── README.md │ │ │ ├── _coverage.html │ │ │ ├── assets │ │ │ ├── coverage.js │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── mock.js │ │ │ ├── qunit-logging.js │ │ │ ├── qunit.css │ │ │ ├── qunit.js │ │ │ └── utils.js │ │ │ ├── run-qunit.js │ │ │ ├── suites │ │ │ ├── calendar-weeks.js │ │ │ ├── component.js │ │ │ ├── data-api.js │ │ │ ├── events.js │ │ │ ├── formats.js │ │ │ ├── inline.js │ │ │ ├── keyboard_navigation │ │ │ │ ├── 2011.js │ │ │ │ ├── 2012.js │ │ │ │ └── all.js │ │ │ ├── methods.js │ │ │ ├── mouse_navigation │ │ │ │ ├── 2011.js │ │ │ │ ├── 2012.js │ │ │ │ └── all.js │ │ │ ├── noconflict.js │ │ │ └── options.js │ │ │ └── tests.html │ │ ├── bootstrap-daterangepicker │ │ ├── README.md │ │ ├── daterangepicker-bs2.css │ │ ├── daterangepicker-bs3.css │ │ ├── daterangepicker.js │ │ ├── examples.html │ │ ├── moment.js │ │ └── moment.min.js │ │ ├── bootstrap-datetimepicker │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ │ ├── build.less │ │ │ └── build_standalone.less │ │ ├── css │ │ │ └── datetimepicker.css │ │ ├── js │ │ │ ├── bootstrap-datetimepicker.js │ │ │ ├── bootstrap-datetimepicker.min.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datetimepicker.bg.js │ │ │ │ ├── bootstrap-datetimepicker.ca.js │ │ │ │ ├── bootstrap-datetimepicker.cs.js │ │ │ │ ├── bootstrap-datetimepicker.da.js │ │ │ │ ├── bootstrap-datetimepicker.de.js │ │ │ │ ├── bootstrap-datetimepicker.el.js │ │ │ │ ├── bootstrap-datetimepicker.es.js │ │ │ │ ├── bootstrap-datetimepicker.fi.js │ │ │ │ ├── bootstrap-datetimepicker.fr.js │ │ │ │ ├── bootstrap-datetimepicker.he.js │ │ │ │ ├── bootstrap-datetimepicker.hr.js │ │ │ │ ├── bootstrap-datetimepicker.hu.js │ │ │ │ ├── bootstrap-datetimepicker.id.js │ │ │ │ ├── bootstrap-datetimepicker.is.js │ │ │ │ ├── bootstrap-datetimepicker.it.js │ │ │ │ ├── bootstrap-datetimepicker.ja.js │ │ │ │ ├── bootstrap-datetimepicker.kr.js │ │ │ │ ├── bootstrap-datetimepicker.lt.js │ │ │ │ ├── bootstrap-datetimepicker.lv.js │ │ │ │ ├── bootstrap-datetimepicker.ms.js │ │ │ │ ├── bootstrap-datetimepicker.nb.js │ │ │ │ ├── bootstrap-datetimepicker.nl.js │ │ │ │ ├── bootstrap-datetimepicker.pl.js │ │ │ │ ├── bootstrap-datetimepicker.pt-BR.js │ │ │ │ ├── bootstrap-datetimepicker.pt.js │ │ │ │ ├── bootstrap-datetimepicker.ro.js │ │ │ │ ├── bootstrap-datetimepicker.rs-latin.js │ │ │ │ ├── bootstrap-datetimepicker.rs.js │ │ │ │ ├── bootstrap-datetimepicker.ru.js │ │ │ │ ├── bootstrap-datetimepicker.sk.js │ │ │ │ ├── bootstrap-datetimepicker.sl.js │ │ │ │ ├── bootstrap-datetimepicker.sv.js │ │ │ │ ├── bootstrap-datetimepicker.sw.js │ │ │ │ ├── bootstrap-datetimepicker.th.js │ │ │ │ ├── bootstrap-datetimepicker.tr.js │ │ │ │ ├── bootstrap-datetimepicker.ua.js │ │ │ │ ├── bootstrap-datetimepicker.uk.js │ │ │ │ ├── bootstrap-datetimepicker.zh-CN.js │ │ │ │ └── bootstrap-datetimepicker.zh-TW.js │ │ ├── less │ │ │ └── datetimepicker.less │ │ ├── sample │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── img │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ └── bootstrap.min.js │ │ │ ├── index.html │ │ │ └── jquery │ │ │ │ └── jquery-1.8.3.min.js │ │ ├── screenshot │ │ │ ├── standard_day.png │ │ │ ├── standard_day_meridian.png │ │ │ ├── standard_decade.png │ │ │ ├── standard_full.png │ │ │ ├── standard_hour.png │ │ │ ├── standard_hour_meridian.png │ │ │ ├── standard_month.png │ │ │ └── standard_year.png │ │ └── tests │ │ │ ├── README.md │ │ │ ├── _coverage.html │ │ │ ├── assets │ │ │ ├── coverage.js │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── mock.js │ │ │ ├── qunit-logging.js │ │ │ ├── qunit.css │ │ │ ├── qunit.js │ │ │ └── utils.js │ │ │ ├── run-qunit.js │ │ │ ├── suites │ │ │ ├── component.js │ │ │ ├── events.js │ │ │ ├── formats.js │ │ │ ├── inline.js │ │ │ ├── keyboard_navigation │ │ │ │ ├── 2011.js │ │ │ │ ├── 2012.js │ │ │ │ └── all.js │ │ │ ├── mouse_navigation │ │ │ │ ├── 2011.js │ │ │ │ ├── 2012.js │ │ │ │ └── all.js │ │ │ └── options.js │ │ │ ├── tests.html │ │ │ └── tests.min.html │ │ ├── bootstrap-fileupload │ │ ├── bootstrap-fileupload.css │ │ ├── bootstrap-fileupload.js │ │ ├── bootstrap-fileupload.min.css │ │ └── bootstrap-fileupload.min.js │ │ ├── bootstrap-hover-dropdown │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap-hover-dropdown.js │ │ ├── bootstrap-hover-dropdown.min.js │ │ ├── bower.json │ │ └── demo.html │ │ ├── bootstrap-modal │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bs3.html │ │ ├── component.json │ │ ├── composer.json │ │ ├── css │ │ │ ├── bootstrap-modal-bs3patch.css │ │ │ └── bootstrap-modal.css │ │ ├── img │ │ │ └── ajax-loader.gif │ │ ├── index.html │ │ ├── js │ │ │ ├── bootstrap-modal.js │ │ │ └── bootstrap-modalmanager.js │ │ ├── modal_ajax_test.html │ │ └── params.json │ │ ├── bootstrap-paginator │ │ ├── .gitignore │ │ ├── CHANGELOG │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap-paginator.jquery.json │ │ ├── build.sh │ │ ├── build │ │ │ └── bootstrap-paginator.min.js │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrapv3.css │ │ │ ├── bootstrapv3.min.css │ │ │ ├── documentation.css │ │ │ ├── highlight.js │ │ │ │ ├── arta.css │ │ │ │ ├── ascetic.css │ │ │ │ ├── brown_paper.css │ │ │ │ ├── brown_papersq.png │ │ │ │ ├── dark.css │ │ │ │ ├── default.css │ │ │ │ ├── far.css │ │ │ │ ├── github.css │ │ │ │ ├── googlecode.css │ │ │ │ ├── idea.css │ │ │ │ ├── ir_black.css │ │ │ │ ├── magula.css │ │ │ │ ├── monokai.css │ │ │ │ ├── pojoaque.css │ │ │ │ ├── pojoaque.jpg │ │ │ │ ├── rainbow.css │ │ │ │ ├── school_book.css │ │ │ │ ├── school_book.png │ │ │ │ ├── solarized_dark.css │ │ │ │ ├── solarized_light.css │ │ │ │ ├── sunburst.css │ │ │ │ ├── tomorrow-night-blue.css │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ ├── tomorrow-night.css │ │ │ │ ├── tomorrow.css │ │ │ │ ├── vs.css │ │ │ │ ├── xcode.css │ │ │ │ └── zenburn.css │ │ │ └── qunit-1.11.0.css │ │ ├── documentation │ │ │ └── index.html │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ ├── glyphicons-halflings.png │ │ │ └── illustration.png │ │ ├── lib │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── bootstrapv3.js │ │ │ ├── highlight.pack.js │ │ │ ├── jquery-1.9.1.min.js │ │ │ ├── jquery.history.js │ │ │ └── qunit-1.11.0.js │ │ ├── src │ │ │ └── bootstrap-paginator.js │ │ └── test │ │ │ ├── test.html │ │ │ └── testv3.html │ │ ├── bootstrap-social-buttons │ │ ├── LICENSE │ │ ├── README.md │ │ ├── social-buttons-3.css │ │ ├── social-buttons-3.less │ │ ├── social-buttons.css │ │ └── social-buttons.less │ │ ├── bootstrap-switch │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── examples │ │ │ └── index.html │ │ └── static │ │ │ ├── js │ │ │ ├── bootstrap-switch.js │ │ │ └── bootstrap-switch.min.js │ │ │ ├── less │ │ │ ├── bootstrap-switch.less │ │ │ └── deps │ │ │ │ ├── mixins.less │ │ │ │ └── variables.less │ │ │ └── stylesheets │ │ │ ├── bootstrap-switch.css │ │ │ └── flat-ui-fonts.css │ │ ├── bootstrap-timepicker │ │ ├── .bowerrc │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── component.json │ │ ├── composer.json │ │ ├── css │ │ │ ├── bootstrap-timepicker.css │ │ │ └── bootstrap-timepicker.min.css │ │ ├── js │ │ │ ├── bootstrap-timepicker.js │ │ │ └── bootstrap-timepicker.min.js │ │ ├── less │ │ │ └── timepicker.less │ │ ├── package.json │ │ └── spec │ │ │ └── js │ │ │ ├── KeyboardEventsSpec.js │ │ │ ├── MouseEventsSpec.js │ │ │ ├── TimepickerSpec.js │ │ │ ├── fixtures │ │ │ └── timepicker.html │ │ │ └── helpers │ │ │ ├── SpecHelper.js │ │ │ └── jasmine-jquery.js │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ ├── ckeditor │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── fakeobjects │ │ │ │ └── images │ │ │ │ │ └── spacer.gif │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ └── icon.png │ │ │ │ │ └── icon.png │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── scayt │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ │ │ └── specialchar.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmp.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ ├── samples │ │ │ ├── ajax.html │ │ │ ├── api.html │ │ │ ├── appendto.html │ │ │ ├── assets │ │ │ │ ├── inlineall │ │ │ │ │ └── logo.png │ │ │ │ ├── outputxhtml │ │ │ │ │ └── outputxhtml.css │ │ │ │ ├── posteddata.php │ │ │ │ ├── sample.css │ │ │ │ ├── sample.jpg │ │ │ │ └── uilanguages │ │ │ │ │ └── languages.js │ │ │ ├── datafiltering.html │ │ │ ├── divreplace.html │ │ │ ├── index.html │ │ │ ├── inlineall.html │ │ │ ├── inlinebycode.html │ │ │ ├── inlinetextarea.html │ │ │ ├── jquery.html │ │ │ ├── plugins │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── htmlwriter │ │ │ │ │ ├── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ └── outputhtml.html │ │ │ │ ├── magicline │ │ │ │ │ └── magicline.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ └── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ ├── readonly.html │ │ │ ├── replacebyclass.html │ │ │ ├── replacebycode.html │ │ │ ├── sample.css │ │ │ ├── sample.js │ │ │ ├── sample_posteddata.php │ │ │ ├── tabindex.html │ │ │ ├── uicolor.html │ │ │ ├── uilanguages.html │ │ │ └── xhtmlstyle.html │ │ ├── skins │ │ │ └── moono │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── dialog_opera.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ │ └── readme.md │ │ └── styles.js │ │ ├── colorbox │ │ ├── README.md │ │ ├── bower.json │ │ ├── colorbox.ai │ │ ├── colorbox.jquery.json │ │ ├── content │ │ │ ├── ajax.html │ │ │ ├── daisy.jpg │ │ │ ├── daisy@2x.jpg │ │ │ ├── homer.jpg │ │ │ ├── marylou.jpg │ │ │ ├── ohoopee1.jpg │ │ │ ├── ohoopee2.jpg │ │ │ └── ohoopee3.jpg │ │ ├── example1 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── border.png │ │ │ │ ├── controls.png │ │ │ │ ├── loading.gif │ │ │ │ ├── loading_background.png │ │ │ │ └── overlay.png │ │ │ └── index.html │ │ ├── example2 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── controls.png │ │ │ │ └── loading.gif │ │ │ └── index.html │ │ ├── example3 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── controls.png │ │ │ │ └── loading.gif │ │ │ └── index.html │ │ ├── example4 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── border1.png │ │ │ │ ├── border2.png │ │ │ │ └── loading.gif │ │ │ └── index.html │ │ ├── example5 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── border.png │ │ │ │ ├── controls.png │ │ │ │ ├── loading.gif │ │ │ │ └── loading_background.png │ │ │ └── index.html │ │ ├── i18n │ │ │ ├── jquery.colorbox-ar.js │ │ │ ├── jquery.colorbox-bg.js │ │ │ ├── jquery.colorbox-cs.js │ │ │ ├── jquery.colorbox-da.js │ │ │ ├── jquery.colorbox-de.js │ │ │ ├── jquery.colorbox-es.js │ │ │ ├── jquery.colorbox-et.js │ │ │ ├── jquery.colorbox-fa.js │ │ │ ├── jquery.colorbox-fi.js │ │ │ ├── jquery.colorbox-fr.js │ │ │ ├── jquery.colorbox-gl.js │ │ │ ├── jquery.colorbox-he.js │ │ │ ├── jquery.colorbox-hr.js │ │ │ ├── jquery.colorbox-hu.js │ │ │ ├── jquery.colorbox-id.js │ │ │ ├── jquery.colorbox-it.js │ │ │ ├── jquery.colorbox-ja.js │ │ │ ├── jquery.colorbox-kr.js │ │ │ ├── jquery.colorbox-lv.js │ │ │ ├── jquery.colorbox-nl.js │ │ │ ├── jquery.colorbox-no.js │ │ │ ├── jquery.colorbox-pl.js │ │ │ ├── jquery.colorbox-pt-br.js │ │ │ ├── jquery.colorbox-ro.js │ │ │ ├── jquery.colorbox-ru.js │ │ │ ├── jquery.colorbox-si.js │ │ │ ├── jquery.colorbox-sk.js │ │ │ ├── jquery.colorbox-sv.js │ │ │ ├── jquery.colorbox-tr.js │ │ │ ├── jquery.colorbox-uk.js │ │ │ └── jquery.colorbox-zh-CN.js │ │ ├── jquery.colorbox-min.js │ │ └── jquery.colorbox.js │ │ ├── css3-animation │ │ └── animations.css │ │ ├── datepicker │ │ ├── css │ │ │ └── datepicker.css │ │ ├── js │ │ │ └── bootstrap-datepicker.js │ │ └── less │ │ │ └── datepicker.less │ │ ├── dropzone │ │ ├── .gitignore │ │ ├── .tagconfig │ │ ├── .travis.yml │ │ ├── AMD_footer │ │ ├── AMD_header │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.coffee │ │ ├── bower.json │ │ ├── component.json │ │ ├── downloads │ │ │ ├── css │ │ │ │ ├── basic.css │ │ │ │ ├── dropzone.css │ │ │ │ └── stylus │ │ │ │ │ ├── basic.styl │ │ │ │ │ └── dropzone.styl │ │ │ ├── dropzone-amd-module.js │ │ │ ├── dropzone-amd-module.min.js │ │ │ ├── dropzone.js │ │ │ ├── dropzone.min.js │ │ │ └── images │ │ │ │ ├── spritemap.png │ │ │ │ └── spritemap@2x.png │ │ ├── index.js │ │ ├── lib │ │ │ └── dropzone.js │ │ ├── npm_publish.sh │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ │ └── dropzone.coffee │ │ └── test │ │ │ ├── test.coffee │ │ │ ├── test.html │ │ │ └── test.js │ │ ├── dynatree │ │ ├── GPL-LICENSE.txt │ │ ├── MIT-License.txt │ │ ├── dist │ │ │ ├── jquery.dynatree-1.2.4.js │ │ │ └── jquery.dynatree.min.js │ │ ├── doc │ │ │ ├── contextmenu │ │ │ │ ├── images │ │ │ │ │ ├── cut.png │ │ │ │ │ ├── door.png │ │ │ │ │ ├── page_white_copy.png │ │ │ │ │ ├── page_white_delete.png │ │ │ │ │ ├── page_white_edit.png │ │ │ │ │ └── page_white_paste.png │ │ │ │ ├── jquery.contextMenu-custom.js │ │ │ │ └── jquery.contextMenu.css │ │ │ ├── dynatree-doc.html │ │ │ ├── dynatree_server.py │ │ │ ├── howto.css │ │ │ ├── howto.js │ │ │ ├── iconInfo_32x32.png │ │ │ ├── iconWarning_32x32.png │ │ │ ├── icons-vista.psp │ │ │ ├── icons-xp.psp │ │ │ ├── icons_layout.ods │ │ │ ├── jq.context │ │ │ │ ├── images │ │ │ │ │ ├── cut.png │ │ │ │ │ ├── door.png │ │ │ │ │ ├── page_white_copy.png │ │ │ │ │ ├── page_white_delete.png │ │ │ │ │ ├── page_white_edit.png │ │ │ │ │ └── page_white_paste.png │ │ │ │ ├── jquery.contextMenu.css │ │ │ │ ├── jquery.contextMenu.js │ │ │ │ └── jquery.ui.position.js │ │ │ ├── jquery.planize.js │ │ │ ├── nav_bg.png │ │ │ ├── prettify.css │ │ │ ├── prettify.js │ │ │ ├── sample-api.html │ │ │ ├── sample-contextmenu.html │ │ │ ├── sample-contextmenu2.html │ │ │ ├── sample-data1.json │ │ │ ├── sample-data2.json │ │ │ ├── sample-data3.json │ │ │ ├── sample-default.html │ │ │ ├── sample-dnd.html │ │ │ ├── sample-dnd2.html │ │ │ ├── sample-dnd3.html │ │ │ ├── sample-effects.html │ │ │ ├── sample-empty.json │ │ │ ├── sample-events.html │ │ │ ├── sample-form.html │ │ │ ├── sample-iframe-1.html │ │ │ ├── sample-iframe.html │ │ │ ├── sample-init-lazy.html │ │ │ ├── sample-inline-edit.html │ │ │ ├── sample-lazy.html │ │ │ ├── sample-minexpand.html │ │ │ ├── sample-multiline.html │ │ │ ├── sample-persist.html │ │ │ ├── sample-pyserver.html │ │ │ ├── sample-quick.html │ │ │ ├── sample-rtl.html │ │ │ ├── sample-select.html │ │ │ ├── sample-theming.html │ │ │ ├── sample-ul.html │ │ │ ├── sample.css │ │ │ ├── sample.js │ │ │ ├── samples-nav.html │ │ │ ├── samples-top.html │ │ │ ├── samples-welcome.html │ │ │ ├── samples.html │ │ │ ├── skin-custom │ │ │ │ ├── custom.css │ │ │ │ ├── customDoc1.gif │ │ │ │ ├── customDoc2.gif │ │ │ │ ├── customFolder1.gif │ │ │ │ ├── doc_with_children.gif │ │ │ │ ├── folder_docs.gif │ │ │ │ ├── folder_images.gif │ │ │ │ └── folder_page.gif │ │ │ ├── test-bench.html │ │ │ ├── test-css.html │ │ │ ├── test-dtd-html4-strict.html │ │ │ ├── test-dtd-html4-transitional.html │ │ │ ├── test-dtd-html5.html │ │ │ ├── test-dtd-none.html │ │ │ ├── test-dtd-xml-strict.html │ │ │ ├── test-dtd-xml-transitional.html │ │ │ ├── test-latest.html │ │ │ ├── test-persist.html │ │ │ ├── test-preload.html │ │ │ ├── test-release.html │ │ │ ├── test-table.html │ │ │ └── test-xhtml.xhtml │ │ ├── grunt.js │ │ ├── index.html │ │ ├── jquery │ │ │ ├── README.txt │ │ │ ├── jquery-ui.custom.js │ │ │ ├── jquery-ui.custom.min.js │ │ │ ├── jquery.cookie.js │ │ │ ├── jquery.js │ │ │ └── jquery.min.js │ │ ├── package.json │ │ ├── src │ │ │ ├── GPL-LICENSE.txt │ │ │ ├── MIT-License.txt │ │ │ ├── jquery.dynatree.js │ │ │ ├── skin-vista │ │ │ │ ├── icons.gif │ │ │ │ ├── loading.gif │ │ │ │ └── ui.dynatree.css │ │ │ └── skin │ │ │ │ ├── icons-rtl.gif │ │ │ │ ├── icons.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── ui.dynatree.css │ │ │ │ ├── vline-rtl.gif │ │ │ │ └── vline.gif │ │ └── tests │ │ │ ├── qunit.css │ │ │ ├── qunit.js │ │ │ ├── sample-data1.json │ │ │ ├── sample-data2.json │ │ │ ├── test-adhoc.html │ │ │ ├── test-bench.html │ │ │ ├── test-dynatree.js │ │ │ ├── test.html │ │ │ └── tests - Shortcut.lnk │ │ ├── excanvas.min.js │ │ ├── flot │ │ ├── API.md │ │ ├── CONTRIBUTING.md │ │ ├── FAQ.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── NEWS.md │ │ ├── PLUGINS.md │ │ ├── README.md │ │ ├── build.log │ │ ├── examples │ │ │ ├── ajax │ │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ │ ├── data-eu-gdp-growth-5.json │ │ │ │ ├── data-eu-gdp-growth.json │ │ │ │ ├── data-japan-gdp-growth.json │ │ │ │ ├── data-usa-gdp-growth.json │ │ │ │ └── index.html │ │ │ ├── annotating │ │ │ │ └── index.html │ │ │ ├── axes-interacting │ │ │ │ └── index.html │ │ │ ├── axes-multiple │ │ │ │ └── index.html │ │ │ ├── axes-time-zones │ │ │ │ ├── date.js │ │ │ │ ├── index.html │ │ │ │ └── tz │ │ │ │ │ ├── africa │ │ │ │ │ ├── antarctica │ │ │ │ │ ├── asia │ │ │ │ │ ├── australasia │ │ │ │ │ ├── backward │ │ │ │ │ ├── etcetera │ │ │ │ │ ├── europe │ │ │ │ │ ├── factory │ │ │ │ │ ├── iso3166.tab │ │ │ │ │ ├── leapseconds │ │ │ │ │ ├── northamerica │ │ │ │ │ ├── pacificnew │ │ │ │ │ ├── solar87 │ │ │ │ │ ├── solar88 │ │ │ │ │ ├── solar89 │ │ │ │ │ ├── southamerica │ │ │ │ │ ├── systemv │ │ │ │ │ ├── yearistype.sh │ │ │ │ │ └── zone.tab │ │ │ ├── axes-time │ │ │ │ └── index.html │ │ │ ├── background.png │ │ │ ├── basic-options │ │ │ │ └── index.html │ │ │ ├── basic-usage │ │ │ │ └── index.html │ │ │ ├── canvas │ │ │ │ └── index.html │ │ │ ├── categories │ │ │ │ └── index.html │ │ │ ├── examples.css │ │ │ ├── image │ │ │ │ ├── hs-2004-27-a-large-web.jpg │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── interacting │ │ │ │ └── index.html │ │ │ ├── navigate │ │ │ │ ├── arrow-down.gif │ │ │ │ ├── arrow-left.gif │ │ │ │ ├── arrow-right.gif │ │ │ │ ├── arrow-up.gif │ │ │ │ └── index.html │ │ │ ├── percentiles │ │ │ │ └── index.html │ │ │ ├── realtime │ │ │ │ └── index.html │ │ │ ├── resize │ │ │ │ └── index.html │ │ │ ├── selection │ │ │ │ └── index.html │ │ │ ├── series-errorbars │ │ │ │ └── index.html │ │ │ ├── series-pie │ │ │ │ └── index.html │ │ │ ├── series-toggle │ │ │ │ └── index.html │ │ │ ├── series-types │ │ │ │ └── index.html │ │ │ ├── shared │ │ │ │ └── jquery-ui │ │ │ │ │ ├── jquery-ui.min.css │ │ │ │ │ └── jquery-ui.min.js │ │ │ ├── stacking │ │ │ │ └── index.html │ │ │ ├── symbols │ │ │ │ └── index.html │ │ │ ├── threshold │ │ │ │ └── index.html │ │ │ ├── tracking │ │ │ │ └── index.html │ │ │ ├── visitors │ │ │ │ └── index.html │ │ │ └── zooming │ │ │ │ └── index.html │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── jquery.colorhelpers.js │ │ ├── jquery.colorhelpers.min.js │ │ ├── jquery.flot.canvas.js │ │ ├── jquery.flot.canvas.min.js │ │ ├── jquery.flot.categories.js │ │ ├── jquery.flot.categories.min.js │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.crosshair.min.js │ │ ├── jquery.flot.errorbars.js │ │ ├── jquery.flot.errorbars.min.js │ │ ├── jquery.flot.fillbetween.js │ │ ├── jquery.flot.fillbetween.min.js │ │ ├── jquery.flot.image.js │ │ ├── jquery.flot.image.min.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.min.js │ │ ├── jquery.flot.navigate.js │ │ ├── jquery.flot.navigate.min.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.pie.min.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.resize.min.js │ │ ├── jquery.flot.selection.js │ │ ├── jquery.flot.selection.min.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.flot.stack.min.js │ │ ├── jquery.flot.symbol.js │ │ ├── jquery.flot.symbol.min.js │ │ ├── jquery.flot.threshold.js │ │ ├── jquery.flot.threshold.min.js │ │ ├── jquery.flot.time.js │ │ ├── jquery.flot.time.min.js │ │ ├── jquery.js │ │ └── jquery.min.js │ │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── spinning.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _spinning.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ ├── fullcalendar │ │ ├── changelog.txt │ │ ├── demos │ │ │ ├── agenda-views.html │ │ │ ├── basic-views.html │ │ │ ├── cupertino │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png │ │ │ │ │ ├── ui-bg_flat_15_cd0a0a_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_e4f1fb_1x400.png │ │ │ │ │ ├── ui-bg_glass_50_3baae3_1x400.png │ │ │ │ │ ├── ui-bg_glass_80_d7ebf9_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_70_000000_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_deedf7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_25_ffef8f_1x100.png │ │ │ │ │ ├── ui-icons_2694e8_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_3d80b3_256x240.png │ │ │ │ │ ├── ui-icons_72a7cf_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ └── jquery-ui.min.css │ │ │ ├── default.html │ │ │ ├── external-dragging.html │ │ │ ├── gcal.html │ │ │ ├── json-events.php │ │ │ ├── json.html │ │ │ ├── selectable.html │ │ │ └── theme.html │ │ ├── fullcalendar │ │ │ ├── fullcalendar.css │ │ │ ├── fullcalendar.js │ │ │ ├── fullcalendar.min.js │ │ │ ├── fullcalendar.print.css │ │ │ └── gcal.js │ │ ├── lib │ │ │ ├── jquery-ui.custom.min.js │ │ │ └── jquery.min.js │ │ └── license.txt │ │ ├── gmaps │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── bower.json │ │ ├── examples │ │ │ ├── basic.html │ │ │ ├── context_menu.html │ │ │ ├── custom_controls.html │ │ │ ├── elevation_locations.html │ │ │ ├── elevation_routes.html │ │ │ ├── examples.css │ │ │ ├── fusion_tables.html │ │ │ ├── geocoding.html │ │ │ ├── geofences.html │ │ │ ├── geolocation.html │ │ │ ├── geometry.html │ │ │ ├── kml.html │ │ │ ├── layers.html │ │ │ ├── layers_places.html │ │ │ ├── map_events.html │ │ │ ├── map_types.html │ │ │ ├── marker_clusterer.html │ │ │ ├── markers.html │ │ │ ├── overlay_map_types.html │ │ │ ├── overlays.html │ │ │ ├── polygons.html │ │ │ ├── polylines.html │ │ │ ├── routes.html │ │ │ ├── routes_advanced.html │ │ │ ├── static.html │ │ │ ├── static_markers.html │ │ │ ├── static_polylines.html │ │ │ ├── styled_maps.html │ │ │ └── travel_route.html │ │ ├── gmaps.js │ │ ├── lib │ │ │ ├── gmaps.controls.js │ │ │ ├── gmaps.core.js │ │ │ ├── gmaps.events.js │ │ │ ├── gmaps.geofences.js │ │ │ ├── gmaps.geometry.js │ │ │ ├── gmaps.layers.js │ │ │ ├── gmaps.map_types.js │ │ │ ├── gmaps.markers.js │ │ │ ├── gmaps.native_extensions.js │ │ │ ├── gmaps.overlays.js │ │ │ ├── gmaps.routes.js │ │ │ ├── gmaps.static.js │ │ │ ├── gmaps.streetview.js │ │ │ ├── gmaps.styles.js │ │ │ └── gmaps.utils.js │ │ ├── package.json │ │ └── test │ │ │ ├── index.html │ │ │ ├── lib │ │ │ ├── jasmine-html.js │ │ │ ├── jasmine.css │ │ │ └── jasmine.js │ │ │ ├── spec │ │ │ ├── EventSpec.js │ │ │ ├── GeometrySpec.js │ │ │ ├── LayerSpec.js │ │ │ ├── MapSpec.js │ │ │ ├── MarkerSpec.js │ │ │ ├── OverlaySpec.js │ │ │ ├── RouteSpec.js │ │ │ ├── StreetViewSpec.js │ │ │ └── StyleSpec.js │ │ │ ├── style.css │ │ │ └── template │ │ │ └── jasmine-gmaps.html │ │ ├── gritter │ │ ├── README.markdown │ │ ├── css │ │ │ └── jquery.gritter.css │ │ ├── images │ │ │ ├── gritter-light.png │ │ │ ├── gritter-long.png │ │ │ ├── gritter.png │ │ │ ├── ie-spacer.gif │ │ │ └── trees.jpg │ │ ├── index.html │ │ ├── js │ │ │ ├── jquery.gritter.js │ │ │ └── jquery.gritter.min.js │ │ └── package.json │ │ ├── iCheck │ │ ├── README.md │ │ ├── demo │ │ │ ├── css │ │ │ │ ├── custom.css │ │ │ │ ├── custom.styl │ │ │ │ ├── icheck.png │ │ │ │ ├── ie │ │ │ │ │ ├── arrow-bottom.png │ │ │ │ │ ├── arrow-top.png │ │ │ │ │ ├── header-line.png │ │ │ │ │ ├── icon-fork.png │ │ │ │ │ ├── icon-github.png │ │ │ │ │ ├── icon-lab.png │ │ │ │ │ ├── icon-options.png │ │ │ │ │ └── icon-star.png │ │ │ │ ├── montserrat-bold.eot │ │ │ │ ├── montserrat-bold.svg │ │ │ │ ├── montserrat-bold.ttf │ │ │ │ ├── montserrat-bold.woff │ │ │ │ ├── montserrat-regular.eot │ │ │ │ ├── montserrat-regular.svg │ │ │ │ ├── montserrat-regular.ttf │ │ │ │ ├── montserrat-regular.woff │ │ │ │ └── normalize.css │ │ │ ├── index.html │ │ │ └── js │ │ │ │ ├── custom.js │ │ │ │ ├── jquery.js │ │ │ │ └── zepto.js │ │ ├── jquery.icheck.js │ │ ├── jquery.icheck.min.js │ │ ├── skins │ │ │ ├── all.css │ │ │ ├── flat │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── flat.css │ │ │ │ ├── flat.png │ │ │ │ ├── flat@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── futurico │ │ │ │ ├── futurico.css │ │ │ │ ├── futurico.png │ │ │ │ └── futurico@2x.png │ │ │ ├── line │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── blue.css │ │ │ │ ├── green.css │ │ │ │ ├── grey.css │ │ │ │ ├── line.css │ │ │ │ ├── line.png │ │ │ │ ├── line@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── pink.css │ │ │ │ ├── purple.css │ │ │ │ ├── red.css │ │ │ │ └── yellow.css │ │ │ ├── minimal │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── minimal.css │ │ │ │ ├── minimal.png │ │ │ │ ├── minimal@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── polaris │ │ │ │ ├── polaris.css │ │ │ │ ├── polaris.png │ │ │ │ └── polaris@2x.png │ │ │ ├── square │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── square.css │ │ │ │ ├── square.png │ │ │ │ ├── square@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ └── ui_sliders.html │ │ ├── zepto.icheck.js │ │ └── zepto.icheck.min.js │ │ ├── jQRangeSlider │ │ ├── GPL-License.txt │ │ ├── History.md │ │ ├── MIT-License.txt │ │ ├── Readme.md │ │ ├── css │ │ │ ├── classic-min.css │ │ │ ├── classic.css │ │ │ ├── iThing-min.css │ │ │ ├── iThing.css │ │ │ └── icons-classic │ │ │ │ ├── label.png │ │ │ │ ├── resultset_next.png │ │ │ │ └── resultset_previous.png │ │ ├── demo │ │ │ ├── dateSliderDemo.js │ │ │ ├── demo.js │ │ │ ├── editSliderDemo.js │ │ │ ├── img │ │ │ │ ├── calendar.png │ │ │ │ ├── classicTheme.png │ │ │ │ └── iThingTheme.png │ │ │ ├── index.html │ │ │ ├── lib │ │ │ │ └── jquery-ui │ │ │ │ │ ├── css │ │ │ │ │ └── smoothness │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ └── jquery-ui-1.8.10.custom.css │ │ │ │ │ └── js │ │ │ │ │ └── jquery-ui-1.8.16.custom.min.js │ │ │ ├── sliderDemo.js │ │ │ └── style.css │ │ ├── jQAllRangeSliders-min.js │ │ ├── jQAllRangeSliders-withRuler-min.js │ │ ├── jQDateRangeSlider-min.js │ │ ├── jQDateRangeSlider-withRuler-min.js │ │ ├── jQEditRangeSlider-min.js │ │ ├── jQEditRangeSlider-withRuler-min.js │ │ ├── jQRangeSlider-min.js │ │ ├── jQRangeSlider-withRuler-min.js │ │ └── lib │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── jquery-ui-1.8.16.custom.min.js │ │ │ ├── jquery-ui.license.txt │ │ │ ├── jquery.license.txt │ │ │ ├── jquery.mousewheel.license.txt │ │ │ └── jquery.mousewheel.min.js │ │ ├── jQuery-File-Upload │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── angularjs.html │ │ ├── basic-plus.html │ │ ├── basic.html │ │ ├── blueimp-file-upload.jquery.json │ │ ├── bower.json │ │ ├── cors │ │ │ ├── postmessage.html │ │ │ └── result.html │ │ ├── css │ │ │ ├── demo-ie8.css │ │ │ ├── demo.css │ │ │ ├── jquery.fileupload-ui-noscript.css │ │ │ ├── jquery.fileupload-ui.css │ │ │ └── style.css │ │ ├── img │ │ │ ├── loading.gif │ │ │ └── progressbar.gif │ │ ├── index.html │ │ ├── jquery-ui.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── cors │ │ │ │ ├── jquery.postmessage-transport.js │ │ │ │ └── jquery.xdr-transport.js │ │ │ ├── jquery.fileupload-angular.js │ │ │ ├── jquery.fileupload-audio.js │ │ │ ├── jquery.fileupload-image.js │ │ │ ├── jquery.fileupload-jquery-ui.js │ │ │ ├── jquery.fileupload-process.js │ │ │ ├── jquery.fileupload-ui.js │ │ │ ├── jquery.fileupload-validate.js │ │ │ ├── jquery.fileupload-video.js │ │ │ ├── jquery.fileupload.js │ │ │ ├── jquery.iframe-transport.js │ │ │ ├── main.js │ │ │ └── vendor │ │ │ │ └── jquery.ui.widget.js │ │ ├── package.json │ │ ├── server │ │ │ ├── gae-go │ │ │ │ ├── app.yaml │ │ │ │ ├── app │ │ │ │ │ └── main.go │ │ │ │ └── static │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── robots.txt │ │ │ ├── gae-python │ │ │ │ ├── app.yaml │ │ │ │ ├── main.py │ │ │ │ └── static │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── robots.txt │ │ │ ├── node │ │ │ │ ├── .gitignore │ │ │ │ ├── package.json │ │ │ │ ├── public │ │ │ │ │ └── files │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── server.js │ │ │ │ └── tmp │ │ │ │ │ └── .gitignore │ │ │ └── php │ │ │ │ ├── UploadHandler.php │ │ │ │ ├── files │ │ │ │ ├── .gitignore │ │ │ │ └── .htaccess │ │ │ │ └── index.php │ │ └── test │ │ │ ├── index.html │ │ │ └── test.js │ │ ├── jQuery-Knob │ │ ├── README.md │ │ ├── index.html │ │ ├── js │ │ │ ├── jquery.knob-rtl.js │ │ │ └── jquery.knob.js │ │ └── knob.jquery.json │ │ ├── jQuery-Smart-Wizard │ │ ├── README.md │ │ ├── images │ │ │ └── loader.gif │ │ ├── index.htm │ │ ├── js │ │ │ ├── jquery-2.0.0.min.js │ │ │ └── jquery.smartWizard.js │ │ ├── more_examples │ │ │ ├── services │ │ │ │ └── service.php │ │ │ ├── smartwizard2-ajax.htm │ │ │ └── smartwizard2-validation.php │ │ ├── smartwizard-autostep.htm │ │ ├── smartwizard2-ajax.htm │ │ ├── smartwizard2-multiple.htm │ │ ├── smartwizard2-validation.htm │ │ ├── smartwizard2-vertical.htm │ │ └── styles │ │ │ ├── demo_style.css │ │ │ ├── smart_wizard.css │ │ │ └── smart_wizard_vertical.css │ │ ├── jQuery-Tags-Input │ │ ├── README.md │ │ ├── bower.json │ │ ├── example.html │ │ ├── jquery.tagsinput.css │ │ ├── jquery.tagsinput.js │ │ ├── jquery.tagsinput.min.js │ │ └── test │ │ │ ├── fake_json_endpoint.html │ │ │ └── fake_plaintext_endpoint.html │ │ ├── jqGrid │ │ ├── css │ │ │ ├── ellipsis-xbl.xml │ │ │ └── ui.jqgrid.css │ │ ├── js │ │ │ ├── Changes.txt │ │ │ ├── i18n │ │ │ │ ├── grid.locale-ar.js │ │ │ │ ├── grid.locale-bg.js │ │ │ │ ├── grid.locale-bg1251.js │ │ │ │ ├── grid.locale-cat.js │ │ │ │ ├── grid.locale-cn.js │ │ │ │ ├── grid.locale-cs.js │ │ │ │ ├── grid.locale-da.js │ │ │ │ ├── grid.locale-de.js │ │ │ │ ├── grid.locale-dk.js │ │ │ │ ├── grid.locale-el.js │ │ │ │ ├── grid.locale-en.js │ │ │ │ ├── grid.locale-es.js │ │ │ │ ├── grid.locale-fa.js │ │ │ │ ├── grid.locale-fi.js │ │ │ │ ├── grid.locale-fr.js │ │ │ │ ├── grid.locale-gl.js │ │ │ │ ├── grid.locale-he.js │ │ │ │ ├── grid.locale-hr.js │ │ │ │ ├── grid.locale-hr1250.js │ │ │ │ ├── grid.locale-hu.js │ │ │ │ ├── grid.locale-id.js │ │ │ │ ├── grid.locale-is.js │ │ │ │ ├── grid.locale-it.js │ │ │ │ ├── grid.locale-ja.js │ │ │ │ ├── grid.locale-kr.js │ │ │ │ ├── grid.locale-lt.js │ │ │ │ ├── grid.locale-mne.js │ │ │ │ ├── grid.locale-nl.js │ │ │ │ ├── grid.locale-no.js │ │ │ │ ├── grid.locale-pl.js │ │ │ │ ├── grid.locale-pt-br.js │ │ │ │ ├── grid.locale-pt.js │ │ │ │ ├── grid.locale-ro.js │ │ │ │ ├── grid.locale-ru.js │ │ │ │ ├── grid.locale-sk.js │ │ │ │ ├── grid.locale-sr-latin.js │ │ │ │ ├── grid.locale-sr.js │ │ │ │ ├── grid.locale-sv.js │ │ │ │ ├── grid.locale-th.js │ │ │ │ ├── grid.locale-tr.js │ │ │ │ ├── grid.locale-tw.js │ │ │ │ ├── grid.locale-ua.js │ │ │ │ └── grid.locale-vi.js │ │ │ ├── install.txt │ │ │ ├── jquery-1.7.2.min.js │ │ │ ├── jquery.jqGrid.min.js │ │ │ └── jquery.jqGrid.src.js │ │ ├── plugins │ │ │ ├── grid.addons.js │ │ │ ├── grid.postext.js │ │ │ ├── grid.setcolumns.js │ │ │ ├── jquery.contextmenu.js │ │ │ ├── jquery.searchFilter.js │ │ │ ├── jquery.tablednd.js │ │ │ ├── searchFilter.css │ │ │ ├── ui.multiselect.css │ │ │ └── ui.multiselect.js │ │ └── src │ │ │ ├── JsonXml.js │ │ │ ├── css │ │ │ ├── ellipsis-xbl.xml │ │ │ ├── ui.jqgrid.css │ │ │ └── ui.multiselect.css │ │ │ ├── grid.base.js │ │ │ ├── grid.celledit.js │ │ │ ├── grid.common.js │ │ │ ├── grid.custom.js │ │ │ ├── grid.filter.js │ │ │ ├── grid.formedit.js │ │ │ ├── grid.grouping.js │ │ │ ├── grid.import.js │ │ │ ├── grid.inlinedit.js │ │ │ ├── grid.jqueryui.js │ │ │ ├── grid.loader.js │ │ │ ├── grid.subgrid.js │ │ │ ├── grid.tbltogrid.js │ │ │ ├── grid.treegrid.js │ │ │ ├── i18n │ │ │ ├── grid.locale-ar.js │ │ │ ├── grid.locale-bg.js │ │ │ ├── grid.locale-bg1251.js │ │ │ ├── grid.locale-cat.js │ │ │ ├── grid.locale-cn.js │ │ │ ├── grid.locale-cs.js │ │ │ ├── grid.locale-da.js │ │ │ ├── grid.locale-de.js │ │ │ ├── grid.locale-dk.js │ │ │ ├── grid.locale-el.js │ │ │ ├── grid.locale-en.js │ │ │ ├── grid.locale-es.js │ │ │ ├── grid.locale-fa.js │ │ │ ├── grid.locale-fi.js │ │ │ ├── grid.locale-fr.js │ │ │ ├── grid.locale-gl.js │ │ │ ├── grid.locale-he.js │ │ │ ├── grid.locale-hr.js │ │ │ ├── grid.locale-hr1250.js │ │ │ ├── grid.locale-hu.js │ │ │ ├── grid.locale-id.js │ │ │ ├── grid.locale-is.js │ │ │ ├── grid.locale-it.js │ │ │ ├── grid.locale-ja.js │ │ │ ├── grid.locale-kr.js │ │ │ ├── grid.locale-lt.js │ │ │ ├── grid.locale-mne.js │ │ │ ├── grid.locale-nl.js │ │ │ ├── grid.locale-no.js │ │ │ ├── grid.locale-pl.js │ │ │ ├── grid.locale-pt-br.js │ │ │ ├── grid.locale-pt.js │ │ │ ├── grid.locale-ro.js │ │ │ ├── grid.locale-ru.js │ │ │ ├── grid.locale-sk.js │ │ │ ├── grid.locale-sr-latin.js │ │ │ ├── grid.locale-sr.js │ │ │ ├── grid.locale-sv.js │ │ │ ├── grid.locale-th.js │ │ │ ├── grid.locale-tr.js │ │ │ ├── grid.locale-tw.js │ │ │ ├── grid.locale-ua.js │ │ │ └── grid.locale-vi.js │ │ │ ├── jqDnR.js │ │ │ ├── jqModal.js │ │ │ └── jquery.fmatter.js │ │ ├── jquery-address │ │ ├── address.css │ │ └── address.js │ │ ├── jquery-cookie │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── .tm_properties │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── MIT-LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── cookie.jquery.json │ │ ├── jquery.cookie.js │ │ ├── package.json │ │ └── test │ │ │ ├── index.html │ │ │ ├── malformed_cookie.html │ │ │ ├── server.js │ │ │ └── tests.js │ │ ├── jquery-easy-pie-chart │ │ ├── Makefile │ │ ├── Readme.md │ │ ├── examples │ │ │ ├── excanvas.js │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── img │ │ │ └── easy-pie-chart.png │ │ ├── jquery.easy-pie-chart.coffee │ │ └── jquery.easy-pie-chart.js │ │ ├── jquery-inputlimiter │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ ├── LICENSE.txt.svn-base │ │ │ │ ├── demo.htm.svn-base │ │ │ │ ├── jquery-1.7.2.min.js.svn-base │ │ │ │ ├── jquery.inputlimiter.1.0.css.svn-base │ │ │ │ ├── jquery.inputlimiter.1.3.1.js.svn-base │ │ │ │ └── jquery.inputlimiter.1.3.1.min.js.svn-base │ │ ├── LICENSE.txt │ │ ├── demo.htm │ │ ├── jquery-1.7.2.min.js │ │ ├── jquery.inputlimiter.1.0.css │ │ ├── jquery.inputlimiter.1.3.1.js │ │ └── jquery.inputlimiter.1.3.1.min.js │ │ ├── jquery-maskmoney │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.html │ │ ├── jquery.maskMoney.js │ │ └── maskmoney.jquery.json │ │ ├── jquery-migrate │ │ └── jquery-migrate-1.2.1.min.js │ │ ├── jquery-mockjax │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── jquery.mockjax.js │ │ ├── lib │ │ │ ├── jquery-1.3.2.js │ │ │ ├── jquery-1.4.4.js │ │ │ ├── jquery-1.5.2.js │ │ │ ├── jquery-1.6.4.js │ │ │ ├── jquery-1.7.2.js │ │ │ ├── jquery-1.8.3.js │ │ │ ├── jquery-1.9.1.js │ │ │ ├── jquery-2.0.0.js │ │ │ ├── jquery.xmldom.js │ │ │ ├── json2.js │ │ │ ├── qunit.css │ │ │ ├── qunit.js │ │ │ └── testswarm.js │ │ ├── package.json │ │ ├── test │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── test.js │ │ │ ├── test.json │ │ │ ├── test_jsonp.js │ │ │ ├── test_proxy.json │ │ │ └── test_script.js │ │ └── testswarm.json │ │ ├── jquery-ui-touch-punch │ │ ├── README.md │ │ ├── jquery.ui.touch-punch.js │ │ └── jquery.ui.touch-punch.min.js │ │ ├── jquery-ui │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── jquery-ui-1.10.1.custom.css │ │ ├── jquery-ui-1.10.1.custom.min.css │ │ ├── jquery-ui-1.10.1.custom.min.js │ │ ├── jquery-ui-1.10.2.custom.min.js │ │ └── jquery-ui-1.9.2.custom.min.js │ │ ├── jquery-validation │ │ ├── README.md │ │ ├── changelog.txt │ │ ├── demo │ │ │ ├── ajaxSubmit-integration-demo.html │ │ │ ├── captcha │ │ │ │ ├── captcha.js │ │ │ │ ├── fonts │ │ │ │ │ └── Anorexia.ttf │ │ │ │ ├── image_req.php │ │ │ │ ├── images │ │ │ │ │ ├── button.png │ │ │ │ │ └── image.php │ │ │ │ ├── index.php │ │ │ │ ├── newsession.php │ │ │ │ ├── process.php │ │ │ │ ├── rand.php │ │ │ │ └── style.css │ │ │ ├── css │ │ │ │ ├── cmxform.css │ │ │ │ ├── cmxformTemplate.css │ │ │ │ ├── core.css │ │ │ │ ├── reset.css │ │ │ │ └── screen.css │ │ │ ├── custom-messages-data-demo.html │ │ │ ├── custom-methods-demo.html │ │ │ ├── dynamic-totals.html │ │ │ ├── errorcontainer-demo.html │ │ │ ├── file_input.html │ │ │ ├── images │ │ │ │ ├── bg.gif │ │ │ │ ├── checked.gif │ │ │ │ ├── cmxform-divider.gif │ │ │ │ ├── cmxform-fieldset.gif │ │ │ │ ├── loading.gif │ │ │ │ └── unchecked.gif │ │ │ ├── index.html │ │ │ ├── jquerymobile.html │ │ │ ├── login │ │ │ │ ├── images │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── header1.jpg │ │ │ │ │ ├── page.gif │ │ │ │ │ └── required_star.gif │ │ │ │ ├── index.html │ │ │ │ └── screen.css │ │ │ ├── marketo │ │ │ │ ├── images │ │ │ │ │ ├── backRequiredGray.gif │ │ │ │ │ ├── back_green-fade.gif │ │ │ │ │ ├── back_nav_blue.gif │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── button-submit.gif │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── help.png │ │ │ │ │ ├── left-nav-callout-long.png │ │ │ │ │ ├── login-sprite.gif │ │ │ │ │ ├── logo_marketo.gif │ │ │ │ │ ├── sf.png │ │ │ │ │ ├── step1-24.gif │ │ │ │ │ ├── step2-24.gif │ │ │ │ │ ├── step3-24.gif │ │ │ │ │ ├── tab-sprite.gif │ │ │ │ │ ├── tab_green.gif │ │ │ │ │ ├── time.png │ │ │ │ │ ├── toggle.gif │ │ │ │ │ └── warning.gif │ │ │ │ ├── index.html │ │ │ │ ├── jquery.maskedinput.js │ │ │ │ ├── mktSignup.js │ │ │ │ ├── step2.htm │ │ │ │ └── stylesheet.css │ │ │ ├── milk │ │ │ │ ├── bg.gif │ │ │ │ ├── index.html │ │ │ │ ├── left_white.png │ │ │ │ ├── milk.css │ │ │ │ ├── milk.png │ │ │ │ └── right_white.png │ │ │ ├── multipart │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jquery.maskedinput-1.0.js │ │ │ │ │ ├── ui.accordion.js │ │ │ │ │ └── ui.core.js │ │ │ │ └── style.css │ │ │ ├── radio-checkbox-select-demo.html │ │ │ ├── tabs │ │ │ │ └── index.html │ │ │ ├── themerollered.html │ │ │ └── tinymce │ │ │ │ ├── index.html │ │ │ │ ├── themes │ │ │ │ └── simple │ │ │ │ │ ├── editor_template.js │ │ │ │ │ ├── img │ │ │ │ │ └── icons.gif │ │ │ │ │ ├── langs │ │ │ │ │ └── en.js │ │ │ │ │ └── skins │ │ │ │ │ └── default │ │ │ │ │ └── ui.css │ │ │ │ └── tiny_mce.js │ │ ├── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ ├── lib │ │ │ ├── jquery-1.6.4.js │ │ │ ├── jquery-1.7.2.js │ │ │ ├── jquery-1.8.3.js │ │ │ ├── jquery-1.9.0.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.js │ │ │ └── jquery.mockjax.js │ │ ├── localization │ │ │ ├── messages_ar.js │ │ │ ├── messages_bg.js │ │ │ ├── messages_ca.js │ │ │ ├── messages_cs.js │ │ │ ├── messages_da.js │ │ │ ├── messages_de.js │ │ │ ├── messages_el.js │ │ │ ├── messages_es.js │ │ │ ├── messages_et.js │ │ │ ├── messages_eu.js │ │ │ ├── messages_fa.js │ │ │ ├── messages_fi.js │ │ │ ├── messages_fr.js │ │ │ ├── messages_he.js │ │ │ ├── messages_hr.js │ │ │ ├── messages_hu.js │ │ │ ├── messages_it.js │ │ │ ├── messages_ja.js │ │ │ ├── messages_ka.js │ │ │ ├── messages_kk.js │ │ │ ├── messages_ko.js │ │ │ ├── messages_lt.js │ │ │ ├── messages_lv.js │ │ │ ├── messages_my.js │ │ │ ├── messages_nl.js │ │ │ ├── messages_no.js │ │ │ ├── messages_pl.js │ │ │ ├── messages_pt_BR.js │ │ │ ├── messages_pt_PT.js │ │ │ ├── messages_ro.js │ │ │ ├── messages_ru.js │ │ │ ├── messages_si.js │ │ │ ├── messages_sk.js │ │ │ ├── messages_sl.js │ │ │ ├── messages_sr.js │ │ │ ├── messages_sv.js │ │ │ ├── messages_th.js │ │ │ ├── messages_tr.js │ │ │ ├── messages_uk.js │ │ │ ├── messages_vi.js │ │ │ ├── messages_zh.js │ │ │ ├── messages_zh_TW.js │ │ │ ├── methods_de.js │ │ │ ├── methods_nl.js │ │ │ └── methods_pt.js │ │ ├── package.json │ │ └── test │ │ │ ├── events.html │ │ │ ├── firebug │ │ │ ├── errorIcon.png │ │ │ ├── firebug.css │ │ │ ├── firebug.html │ │ │ ├── firebug.js │ │ │ ├── firebugx.js │ │ │ ├── infoIcon.png │ │ │ └── warningIcon.png │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── large.html │ │ │ ├── messages.js │ │ │ ├── methods.js │ │ │ ├── qunit │ │ │ ├── qunit.css │ │ │ └── qunit.js │ │ │ ├── rules.js │ │ │ ├── selects │ │ │ └── index.html │ │ │ ├── tabs.html │ │ │ └── test.js │ │ ├── jquery.maskedinput │ │ ├── .gitignore │ │ ├── Jakefile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── demo │ │ │ ├── datepicker.html │ │ │ └── index.html │ │ ├── dist │ │ │ ├── jquery.maskedinput.js │ │ │ └── jquery.maskedinput.min.js │ │ ├── lib │ │ │ ├── jquery-1.8.3.min.js │ │ │ └── jquery-1.9.0.min.js │ │ ├── maskedinput.jquery.json │ │ ├── plugin.json │ │ ├── spec │ │ │ ├── Backspace.Spec.js │ │ │ ├── Delete.spec.js │ │ │ ├── Escape.Spec.js │ │ │ ├── Focus.Spec.js │ │ │ ├── Paste.Spec.js │ │ │ ├── Raw.Spec.js │ │ │ ├── Setup.Spec.js │ │ │ ├── SpecRunner.html │ │ │ ├── Typing.Spec.js │ │ │ └── lib │ │ │ │ ├── jasmine-species │ │ │ │ ├── BSD.LICENSE │ │ │ │ ├── jasmine-be-calm.css │ │ │ │ ├── jasmine-grammar.js │ │ │ │ ├── jasmine-reporting.js │ │ │ │ └── version.json │ │ │ │ ├── jasmine │ │ │ │ ├── MIT.LICENSE │ │ │ │ ├── jasmine-html.js │ │ │ │ ├── jasmine.css │ │ │ │ └── jasmine.js │ │ │ │ ├── jquery.keymasher.js │ │ │ │ └── matchers.js │ │ ├── src │ │ │ └── jquery.maskedinput.js │ │ └── templates │ │ │ └── jquery.maskedinput.template │ │ ├── jquery.pulsate │ │ ├── jquery.pulsate.js │ │ └── jquery.pulsate.min.js │ │ ├── jquery.sparkline │ │ └── jquery.sparkline.js │ │ ├── ladda-bootstrap │ │ ├── .DS_Store │ │ ├── LICENSE │ │ ├── README.md │ │ ├── css │ │ │ ├── ladda-theme.scss │ │ │ ├── ladda.scss │ │ │ └── prism.css │ │ ├── dist │ │ │ ├── ladda-themeless.min.css │ │ │ ├── ladda.min.css │ │ │ ├── ladda.min.js │ │ │ └── spin.min.js │ │ ├── index.html │ │ ├── js │ │ │ ├── ladda.js │ │ │ ├── prism.js │ │ │ └── spin.js │ │ └── params.json │ │ ├── less │ │ └── less-1.5.0.min.js │ │ ├── moment │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── ender.js │ │ ├── lang │ │ │ ├── ar-ma.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── br.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cv.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── ml.js │ │ │ ├── mr.js │ │ │ ├── ms-my.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tzm-la.js │ │ │ ├── tzm.js │ │ │ ├── uk.js │ │ │ ├── vn.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ ├── min │ │ │ ├── langs.js │ │ │ ├── langs.min.js │ │ │ ├── moment+langs.js │ │ │ ├── moment+langs.min.js │ │ │ └── moment.min.js │ │ ├── moment.js │ │ ├── package.js │ │ ├── package.json │ │ ├── readme.md │ │ ├── tasks │ │ │ ├── component.js │ │ │ ├── embed_languages.js │ │ │ ├── history.js │ │ │ ├── size.js │ │ │ └── zones.js │ │ └── test │ │ │ ├── lang │ │ │ ├── ar-ma.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── br.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cv.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── ml.js │ │ │ ├── mr.js │ │ │ ├── ms-my.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tzm-la.js │ │ │ ├── tzm.js │ │ │ ├── uk.js │ │ │ ├── vn.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ │ └── moment │ │ │ ├── add_subtract.js │ │ │ ├── create.js │ │ │ ├── days_in_month.js │ │ │ ├── diff.js │ │ │ ├── duration.js │ │ │ ├── format.js │ │ │ ├── getters_setters.js │ │ │ ├── is_after.js │ │ │ ├── is_before.js │ │ │ ├── is_moment.js │ │ │ ├── is_same.js │ │ │ ├── is_valid.js │ │ │ ├── lang.js │ │ │ ├── leapyear.js │ │ │ ├── listers.js │ │ │ ├── min_max.js │ │ │ ├── mutable.js │ │ │ ├── normalizeUnits.js │ │ │ ├── preparse_postformat.js │ │ │ ├── sod_eod.js │ │ │ ├── string_prototype.js │ │ │ ├── utc.js │ │ │ ├── week_year.js │ │ │ ├── weekday.js │ │ │ ├── weeks.js │ │ │ └── zones.js │ │ ├── nestable │ │ ├── README.md │ │ ├── index.html │ │ └── jquery.nestable.js │ │ ├── perfect-scrollbar │ │ ├── .csslintrc │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── examples │ │ │ ├── azusa.jpg │ │ │ ├── options-default.html │ │ │ ├── options-minScrollbarLength.html │ │ │ ├── options-suppressScrollAxis.html │ │ │ ├── options-useBothWheelAxes.html │ │ │ ├── options-wheelPropagation.html │ │ │ ├── options-wheelSpeed.html │ │ │ └── text-content.html │ │ ├── min │ │ │ ├── perfect-scrollbar-0.4.6.min.css │ │ │ ├── perfect-scrollbar-0.4.6.min.js │ │ │ └── perfect-scrollbar-0.4.6.with-mousewheel.min.js │ │ ├── package.json │ │ ├── perfect-scrollbar.jquery.json │ │ └── src │ │ │ ├── jquery.mousewheel.js │ │ │ ├── perfect-scrollbar.css │ │ │ └── perfect-scrollbar.js │ │ ├── rainyday │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── demo.html │ │ └── rainyday.js │ │ ├── respond.min.js │ │ ├── select2 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── release.sh │ │ ├── select2-spinner.gif │ │ ├── select2.css │ │ ├── select2.jquery.json │ │ ├── select2.js │ │ ├── select2.min.js │ │ ├── select2.png │ │ ├── select2_locale_ar.js │ │ ├── select2_locale_bg.js │ │ ├── select2_locale_ca.js │ │ ├── select2_locale_cs.js │ │ ├── select2_locale_da.js │ │ ├── select2_locale_de.js │ │ ├── select2_locale_el.js │ │ ├── select2_locale_en.js.template │ │ ├── select2_locale_es.js │ │ ├── select2_locale_et.js │ │ ├── select2_locale_eu.js │ │ ├── select2_locale_fa.js │ │ ├── select2_locale_fi.js │ │ ├── select2_locale_fr.js │ │ ├── select2_locale_gl.js │ │ ├── select2_locale_he.js │ │ ├── select2_locale_hr.js │ │ ├── select2_locale_hu.js │ │ ├── select2_locale_id.js │ │ ├── select2_locale_is.js │ │ ├── select2_locale_it.js │ │ ├── select2_locale_ja.js │ │ ├── select2_locale_ko.js │ │ ├── select2_locale_lt.js │ │ ├── select2_locale_lv.js │ │ ├── select2_locale_mk.js │ │ ├── select2_locale_ms.js │ │ ├── select2_locale_nl.js │ │ ├── select2_locale_no.js │ │ ├── select2_locale_pl.js │ │ ├── select2_locale_pt-BR.js │ │ ├── select2_locale_pt-PT.js │ │ ├── select2_locale_ro.js │ │ ├── select2_locale_ru.js │ │ ├── select2_locale_sk.js │ │ ├── select2_locale_sv.js │ │ ├── select2_locale_th.js │ │ ├── select2_locale_tr.js │ │ ├── select2_locale_ua.js │ │ ├── select2_locale_vi.js │ │ ├── select2_locale_zh-CN.js │ │ ├── select2_locale_zh-TW.js │ │ └── select2x2.png │ │ ├── summernote │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── bs2.html │ │ ├── build │ │ │ ├── summernote-bootstrap.css │ │ │ ├── summernote.css │ │ │ └── summernote.min.js │ │ ├── elements.less │ │ ├── index.html │ │ ├── package.json │ │ ├── summernote.js │ │ ├── summernote.less │ │ └── test │ │ │ ├── dom.spec.html │ │ │ ├── dom.spec.js │ │ │ ├── list.spec.html │ │ │ ├── list.spec.js │ │ │ ├── qunit-1.11.0.css │ │ │ ├── qunit-1.11.0.js │ │ │ ├── range.spec.html │ │ │ └── range.spec.js │ │ ├── typeaheadjs │ │ ├── lib │ │ │ ├── typeahead.js │ │ │ └── typeahead.js-bootstrap.css │ │ └── typeaheadjs.js │ │ ├── wysihtml5 │ │ ├── bootstrap-wysihtml5-0.0.2 │ │ │ ├── bootstrap-wysihtml5-0.0.2.css │ │ │ ├── bootstrap-wysihtml5-0.0.2.js │ │ │ ├── bootstrap-wysihtml5-0.0.2.min.js │ │ │ ├── bootstrap-wysihtml5.js │ │ │ ├── wysihtml5-0.3.0.js │ │ │ ├── wysihtml5-0.3.0.min.js │ │ │ └── wysiwyg-color.css │ │ └── wysihtml5.js │ │ └── x-editable │ │ ├── css │ │ └── bootstrap-editable.css │ │ ├── demo-mock.js │ │ ├── demo.js │ │ ├── img │ │ ├── clear.png │ │ └── loading.gif │ │ └── js │ │ ├── bootstrap-editable.js │ │ └── bootstrap-editable.min.js ├── bootstrap │ ├── css │ │ ├── bootstrap-responsive.min.css │ │ └── bootstrap.min.css │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ └── js │ │ └── bootstrap.min.js ├── category.php ├── change-password.php ├── closed-complaint.php ├── college.php ├── complaint-details.php ├── css │ └── theme.css ├── department.php ├── edit-category.php ├── edit-state.php ├── edit-subcategory.php ├── get_subcat.php ├── images │ ├── bg.png │ ├── icons │ │ ├── css │ │ │ └── font-awesome.css │ │ └── font │ │ │ ├── fontawesome-webfont3294.eot │ │ │ ├── fontawesome-webfont3294.ttf │ │ │ ├── fontawesome-webfont3294.woff │ │ │ └── fontawesome-webfontd41d.eot │ ├── img.jpg │ ├── jquery-ui │ │ └── picker.png │ └── user.png ├── include │ ├── config.php │ ├── footer.php │ ├── header.php │ └── sidebar.php ├── index.php ├── inprocess-complaint.php ├── logout.php ├── manage-users.php ├── notprocess-complaint.php ├── pending-orders.php ├── scripts │ ├── common.js │ ├── datatables │ │ └── jquery.dataTables.js │ ├── flot │ │ ├── jquery.flot.js │ │ ├── jquery.flot.pie.js │ │ └── jquery.flot.resize.js │ ├── jquery-1.9.1.min.js │ └── jquery-ui-1.10.1.custom.min.js ├── state.php ├── subcategory.php ├── university.php ├── updatecomplaint.php ├── user-logs.php └── userprofile.php ├── css ├── bootstrap.css ├── bootstrap.min.css └── half-slider.css ├── department ├── add-category.php ├── assets │ ├── css │ │ ├── main-responsive.css │ │ ├── main.css │ │ ├── print.css │ │ ├── rtl-version.css │ │ ├── theme_black_and_white.css │ │ ├── theme_dark.css │ │ ├── theme_green.css │ │ ├── theme_light.css │ │ └── theme_navy.css │ ├── fonts │ │ ├── fonts │ │ │ ├── clip-font.eot │ │ │ ├── clip-font.svg │ │ │ ├── clip-font.ttf │ │ │ └── clip-font.woff │ │ ├── lte-ie7.js │ │ └── style.css │ ├── js │ │ ├── charts.js │ │ ├── form-calendar.js │ │ ├── form-dropzone.js │ │ ├── form-elements.js │ │ ├── form-image-cropping.js │ │ ├── form-validation.js │ │ ├── form-wizard.js │ │ ├── index.js │ │ ├── login.js │ │ ├── main.js │ │ ├── maps.js │ │ ├── pages-gallery.js │ │ ├── pages-user-profile.js │ │ ├── table-data.js │ │ ├── ui-animation.js │ │ ├── ui-buttons.js │ │ ├── ui-elements.js │ │ ├── ui-modals.js │ │ ├── ui-nestable.js │ │ ├── ui-sliders.js │ │ ├── ui-treeview.js │ │ ├── utility-coming-soon.js │ │ └── utility-error404.js │ ├── less │ │ └── styles.less │ └── plugins │ │ ├── DataTables │ │ ├── Readme.txt │ │ ├── component.json │ │ ├── docs │ │ │ ├── 34cdb56b2c.html │ │ │ ├── DataTable.defaults.columns.html │ │ │ ├── DataTable.defaults.html │ │ │ ├── DataTable.defaults.oLanguage.html │ │ │ ├── DataTable.defaults.oLanguage.oAria.html │ │ │ ├── DataTable.defaults.oLanguage.oPaginate.html │ │ │ ├── DataTable.defaults.oSearch.html │ │ │ ├── DataTable.ext.html │ │ │ ├── DataTable.html │ │ │ ├── DataTable.models.ext.html │ │ │ ├── DataTable.models.html │ │ │ ├── DataTable.models.oColumn.html │ │ │ ├── DataTable.models.oRow.html │ │ │ ├── DataTable.models.oSearch.html │ │ │ ├── DataTable.models.oSettings.html │ │ │ ├── DataTable.models.oSettings.oBrowser.html │ │ │ ├── DataTable.models.oSettings.oFeatures.html │ │ │ ├── DataTable.models.oSettings.oLanguage.html │ │ │ ├── DataTable.models.oSettings.oPreviousSearch.html │ │ │ ├── DataTable.models.oSettings.oScroll.html │ │ │ ├── index.html │ │ │ └── media │ │ │ │ ├── css │ │ │ │ ├── doc.css │ │ │ │ ├── shCore.css │ │ │ │ └── shThemeDataTables.css │ │ │ │ ├── images │ │ │ │ ├── arrow.jpg │ │ │ │ ├── arrow.png │ │ │ │ └── extended.png │ │ │ │ ├── js │ │ │ │ ├── doc.js │ │ │ │ ├── jquery.js │ │ │ │ ├── shBrushJScript.js │ │ │ │ └── shCore.js │ │ │ │ └── license │ │ │ │ └── Syntax Highlighter │ │ ├── examples │ │ │ ├── advanced_init │ │ │ │ ├── column_render.html │ │ │ │ ├── complex_header.html │ │ │ │ ├── defaults.html │ │ │ │ ├── dom_multiple_elements.html │ │ │ │ ├── dom_toolbar.html │ │ │ │ ├── dt_events.html │ │ │ │ ├── events_live.html │ │ │ │ ├── events_post_init.html │ │ │ │ ├── events_pre_init.html │ │ │ │ ├── footer_callback.html │ │ │ │ ├── highlight.html │ │ │ │ ├── html_sort.html │ │ │ │ ├── language_file.html │ │ │ │ ├── length_menu.html │ │ │ │ ├── localstorage.html │ │ │ │ ├── row_callback.html │ │ │ │ ├── row_grouping.html │ │ │ │ └── sorting_control.html │ │ │ ├── ajax │ │ │ │ ├── ajax.html │ │ │ │ ├── custom_data_property.html │ │ │ │ ├── deep.html │ │ │ │ ├── defer_render.html │ │ │ │ ├── null_data_source.html │ │ │ │ ├── objects.html │ │ │ │ ├── objects_subarrays.html │ │ │ │ └── sources │ │ │ │ │ ├── array_only.txt │ │ │ │ │ ├── arrays.txt │ │ │ │ │ ├── arrays_subobjects.txt │ │ │ │ │ ├── custom_prop.txt │ │ │ │ │ ├── deep.txt │ │ │ │ │ ├── objects.txt │ │ │ │ │ └── objects_subarrays.txt │ │ │ ├── api │ │ │ │ ├── add_row.html │ │ │ │ ├── api_in_init.html │ │ │ │ ├── counter_column.html │ │ │ │ ├── editable.html │ │ │ │ ├── form.html │ │ │ │ ├── highlight.html │ │ │ │ ├── multi_filter.html │ │ │ │ ├── multi_filter_select.html │ │ │ │ ├── regex.html │ │ │ │ ├── row_details.html │ │ │ │ ├── select_row.html │ │ │ │ ├── select_single_row.html │ │ │ │ ├── show_hide.html │ │ │ │ └── tabs_and_scrolling.html │ │ │ ├── basic_init │ │ │ │ ├── alt_pagination.html │ │ │ │ ├── base.html │ │ │ │ ├── base_themeroller.html │ │ │ │ ├── complex_header.html │ │ │ │ ├── dom.html │ │ │ │ ├── filter_only.html │ │ │ │ ├── flexible_width.html │ │ │ │ ├── hidden_columns.html │ │ │ │ ├── language.html │ │ │ │ ├── multi_col_sort.html │ │ │ │ ├── multiple_tables.html │ │ │ │ ├── scroll_x.html │ │ │ │ ├── scroll_xy.html │ │ │ │ ├── scroll_y.html │ │ │ │ ├── scroll_y_infinite.html │ │ │ │ ├── scroll_y_theme.html │ │ │ │ ├── state_save.html │ │ │ │ ├── table_sorting.html │ │ │ │ ├── themes.html │ │ │ │ └── zero_config.html │ │ │ ├── data_sources │ │ │ │ ├── ajax.html │ │ │ │ ├── dom.html │ │ │ │ ├── js_array.html │ │ │ │ └── server_side.html │ │ │ ├── examples_support │ │ │ │ ├── data.sql │ │ │ │ ├── de_DE.txt │ │ │ │ ├── details_close.png │ │ │ │ ├── details_open.png │ │ │ │ ├── editable_ajax.php │ │ │ │ ├── index.html │ │ │ │ ├── infiniteScroll.php │ │ │ │ ├── jquery-ui-tabs.js │ │ │ │ ├── jquery.jeditable.js │ │ │ │ ├── jquery.tooltip.css │ │ │ │ ├── jquery.tooltip.js │ │ │ │ ├── syntax │ │ │ │ │ ├── css │ │ │ │ │ │ └── shCore.css │ │ │ │ │ ├── images │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ └── extended.png │ │ │ │ │ ├── js │ │ │ │ │ │ └── shCore.js │ │ │ │ │ └── license │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ └── themes │ │ │ │ │ ├── smoothness │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ └── jquery-ui-1.8.4.custom.css │ │ │ │ │ └── ui-lightness │ │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ └── jquery-ui-1.8.4.custom.css │ │ │ ├── index.html │ │ │ ├── plug-ins │ │ │ │ ├── dom_sort.html │ │ │ │ ├── html_sort.html │ │ │ │ ├── paging_plugin.html │ │ │ │ ├── plugin_api.html │ │ │ │ ├── range_filtering.html │ │ │ │ ├── sorting_plugin.html │ │ │ │ └── sorting_sType.html │ │ │ └── server_side │ │ │ │ ├── custom_vars.html │ │ │ │ ├── defer_loading.html │ │ │ │ ├── editable.html │ │ │ │ ├── ids.html │ │ │ │ ├── jsonp.html │ │ │ │ ├── object_data.html │ │ │ │ ├── pipeline.html │ │ │ │ ├── post.html │ │ │ │ ├── row_details.html │ │ │ │ ├── scripts │ │ │ │ ├── custom_data_property.php │ │ │ │ ├── details_col.php │ │ │ │ ├── filter_col.php │ │ │ │ ├── id.php │ │ │ │ ├── id_jsonp.php │ │ │ │ ├── jsonp.php │ │ │ │ ├── objects.php │ │ │ │ ├── objects_jsonp.php │ │ │ │ ├── post.php │ │ │ │ └── server_processing.php │ │ │ │ ├── select_rows.html │ │ │ │ └── server_side.html │ │ ├── extras │ │ │ ├── AutoFill │ │ │ │ ├── callbacks.html │ │ │ │ ├── columns.html │ │ │ │ ├── index.html │ │ │ │ ├── inputs.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ └── AutoFill.css │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── 02ff627f40.html │ │ │ │ │ │ ├── 36456bf45f.html │ │ │ │ │ │ ├── 47cac4f141.html │ │ │ │ │ │ ├── 5a72546831.html │ │ │ │ │ │ ├── 8ee4007a12.html │ │ │ │ │ │ ├── AutoFill.html │ │ │ │ │ │ ├── a69b02bcf2.html │ │ │ │ │ │ ├── b44bd4821a.html │ │ │ │ │ │ ├── c6945fdb4a.html │ │ │ │ │ │ ├── global.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── filler.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── AutoFill.js │ │ │ │ │ │ ├── AutoFill.min.js │ │ │ │ │ │ └── AutoFill.min.js.gz │ │ │ │ └── scrolling.html │ │ │ ├── ColReorder │ │ │ │ ├── alt_insert.html │ │ │ │ ├── col_filter.html │ │ │ │ ├── colvis.html │ │ │ │ ├── fixedcolumns.html │ │ │ │ ├── fixedheader.html │ │ │ │ ├── index.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ └── ColReorder.css │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── 46848f6f3b.html │ │ │ │ │ │ ├── 4f1246032c.html │ │ │ │ │ │ ├── ColReorder.html │ │ │ │ │ │ ├── a69b02bcf2.html │ │ │ │ │ │ ├── global.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── insert.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── ColReorder.js │ │ │ │ │ │ ├── ColReorder.min.js │ │ │ │ │ │ └── ColReorder.min.js.gz │ │ │ │ ├── predefined.html │ │ │ │ ├── reset.html │ │ │ │ ├── scrolling.html │ │ │ │ ├── server_side.html │ │ │ │ ├── state_save.html │ │ │ │ └── theme.html │ │ │ ├── ColVis │ │ │ │ ├── exclude_columns.html │ │ │ │ ├── index.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ ├── ColVis.css │ │ │ │ │ │ └── ColVisAlt.css │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── ColVis.html │ │ │ │ │ │ ├── a69b02bcf2.html │ │ │ │ │ │ ├── ccb5a49865.html │ │ │ │ │ │ ├── global.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── button.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── ColVis.js │ │ │ │ │ │ ├── ColVis.min.js │ │ │ │ │ │ └── ColVis.min.js.gz │ │ │ │ ├── mouseover.html │ │ │ │ ├── style.html │ │ │ │ ├── text.html │ │ │ │ ├── theme.html │ │ │ │ ├── title_callback.html │ │ │ │ ├── two_tables.html │ │ │ │ └── two_tables_identical.html │ │ │ ├── FixedColumns │ │ │ │ ├── col_filter.html │ │ │ │ ├── css_size.html │ │ │ │ ├── docs │ │ │ │ │ ├── 070023b890.html │ │ │ │ │ ├── 526f872207.html │ │ │ │ │ ├── 73098af57c.html │ │ │ │ │ ├── 889588ec06.html │ │ │ │ │ ├── 91bce7c4ad.html │ │ │ │ │ ├── FixedColumns.defaults.html │ │ │ │ │ ├── FixedColumns.html │ │ │ │ │ ├── a6bd52f587.html │ │ │ │ │ ├── d3890ba7c4.html │ │ │ │ │ ├── e20106c59a.html │ │ │ │ │ ├── global.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── media │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ └── license │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ ├── index.html │ │ │ │ ├── index_column.html │ │ │ │ ├── left_right_columns.html │ │ │ │ ├── media │ │ │ │ │ └── js │ │ │ │ │ │ ├── FixedColumns.js │ │ │ │ │ │ ├── FixedColumns.min.js │ │ │ │ │ │ └── FixedColumns.min.js.gz │ │ │ │ ├── right_column.html │ │ │ │ ├── row_grouping.html │ │ │ │ ├── row_grouping_height.html │ │ │ │ ├── rowspan.html │ │ │ │ ├── scale_fixed.html │ │ │ │ ├── scale_relative.html │ │ │ │ ├── server-side-processing.html │ │ │ │ ├── themed.html │ │ │ │ ├── two_columns.html │ │ │ │ └── x_y_scrolling.html │ │ │ ├── FixedHeader │ │ │ │ ├── html_table.html │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── FixedHeader.js │ │ │ │ │ ├── FixedHeader.min.js │ │ │ │ │ └── FixedHeader.min.js.gz │ │ │ │ ├── top_bottom_left_right.html │ │ │ │ ├── top_left.html │ │ │ │ ├── two_tables.html │ │ │ │ └── zIndexes.html │ │ │ ├── KeyTable │ │ │ │ ├── datatable.html │ │ │ │ ├── datatable_scrolling.html │ │ │ │ ├── editing.html │ │ │ │ ├── form.html │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ │ ├── KeyTable.js │ │ │ │ │ ├── KeyTable.min.js │ │ │ │ │ └── KeyTable.min.js.gz │ │ │ ├── Scroller │ │ │ │ ├── api_scrolling.html │ │ │ │ ├── index.html │ │ │ │ ├── large_js_source.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ └── dataTables.scroller.css │ │ │ │ │ ├── data │ │ │ │ │ │ ├── 2500.txt │ │ │ │ │ │ └── server_processing.php │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── Scroller.html │ │ │ │ │ │ ├── Scroller.oDefaults.html │ │ │ │ │ │ ├── baed189d4a.html │ │ │ │ │ │ ├── c6053fac6b.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── loading-background.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ │ │ ├── dataTables.scroller.min.js │ │ │ │ │ │ └── dataTables.scroller.min.js.gz │ │ │ │ ├── server-side_processing.html │ │ │ │ └── state_saving.html │ │ │ └── TableTools │ │ │ │ ├── alt_init.html │ │ │ │ ├── alter_buttons.html │ │ │ │ ├── bootstrap.html │ │ │ │ ├── button_text.html │ │ │ │ ├── collection.html │ │ │ │ ├── defaults.html │ │ │ │ ├── index.html │ │ │ │ ├── media │ │ │ │ ├── as3 │ │ │ │ │ ├── ZeroClipboard.as │ │ │ │ │ ├── ZeroClipboardPdf.as │ │ │ │ │ └── lib │ │ │ │ │ │ └── AlivePDF.swc │ │ │ │ ├── css │ │ │ │ │ ├── TableTools.css │ │ │ │ │ └── TableTools_JUI.css │ │ │ │ ├── images │ │ │ │ │ ├── background.png │ │ │ │ │ ├── collection.png │ │ │ │ │ ├── collection_hover.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── copy_hover.png │ │ │ │ │ ├── csv.png │ │ │ │ │ ├── csv_hover.png │ │ │ │ │ ├── pdf.png │ │ │ │ │ ├── pdf_hover.png │ │ │ │ │ ├── print.png │ │ │ │ │ ├── print_hover.png │ │ │ │ │ ├── psd │ │ │ │ │ │ ├── collection.psd │ │ │ │ │ │ ├── copy document.psd │ │ │ │ │ │ ├── file_types.psd │ │ │ │ │ │ └── printer.psd │ │ │ │ │ ├── xls.png │ │ │ │ │ └── xls_hover.png │ │ │ │ ├── js │ │ │ │ │ ├── TableTools.js │ │ │ │ │ ├── TableTools.min.js │ │ │ │ │ ├── TableTools.min.js.gz │ │ │ │ │ └── ZeroClipboard.js │ │ │ │ └── swf │ │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ │ └── copy_csv_xls_pdf.swf │ │ │ │ ├── multi_instance.html │ │ │ │ ├── multiple_tables.html │ │ │ │ ├── pdf_message.html │ │ │ │ ├── plug-in.html │ │ │ │ ├── select_multi.html │ │ │ │ ├── select_single.html │ │ │ │ ├── swf_path.html │ │ │ │ ├── tabs.html │ │ │ │ └── theme.html │ │ ├── license-bsd.txt │ │ ├── license-gpl2.txt │ │ ├── media │ │ │ ├── css │ │ │ │ ├── DT_bootstrap.css │ │ │ │ ├── demo_page.css │ │ │ │ ├── demo_table.css │ │ │ │ ├── demo_table_jui.css │ │ │ │ ├── images │ │ │ │ │ ├── Sorting icons.psd │ │ │ │ │ ├── back_disabled.png │ │ │ │ │ ├── back_enabled.png │ │ │ │ │ ├── back_enabled_hover.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── forward_disabled.png │ │ │ │ │ ├── forward_enabled.png │ │ │ │ │ ├── forward_enabled_hover.png │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ ├── sort_both.png │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ ├── jquery.dataTables.css │ │ │ │ └── jquery.dataTables_themeroller.css │ │ │ ├── js │ │ │ │ ├── DT_bootstrap.js │ │ │ │ ├── jquery.dataTables.editable.js │ │ │ │ ├── jquery.dataTables.js │ │ │ │ ├── jquery.dataTables.min.js │ │ │ │ └── jquery.js │ │ │ ├── src │ │ │ │ ├── DataTables.js │ │ │ │ ├── api │ │ │ │ │ ├── api.internal.js │ │ │ │ │ ├── api.methods.js │ │ │ │ │ └── api.static.js │ │ │ │ ├── core │ │ │ │ │ ├── core.ajax.js │ │ │ │ │ ├── core.columns.js │ │ │ │ │ ├── core.constructor.js │ │ │ │ │ ├── core.data.js │ │ │ │ │ ├── core.draw.js │ │ │ │ │ ├── core.filter.js │ │ │ │ │ ├── core.info.js │ │ │ │ │ ├── core.init.js │ │ │ │ │ ├── core.length.js │ │ │ │ │ ├── core.page.js │ │ │ │ │ ├── core.processing.js │ │ │ │ │ ├── core.scrolling.js │ │ │ │ │ ├── core.sizing.js │ │ │ │ │ ├── core.sort.js │ │ │ │ │ ├── core.state.js │ │ │ │ │ └── core.support.js │ │ │ │ ├── ext │ │ │ │ │ ├── ext.classes.js │ │ │ │ │ ├── ext.paging.js │ │ │ │ │ ├── ext.sorting.js │ │ │ │ │ └── ext.types.js │ │ │ │ └── model │ │ │ │ │ ├── model.column.js │ │ │ │ │ ├── model.defaults.columns.js │ │ │ │ │ ├── model.defaults.js │ │ │ │ │ ├── model.ext.js │ │ │ │ │ ├── model.row.js │ │ │ │ │ ├── model.search.js │ │ │ │ │ └── model.settings.js │ │ │ └── unit_testing │ │ │ │ ├── controller.js │ │ │ │ ├── controller.php │ │ │ │ ├── index.html │ │ │ │ ├── performance │ │ │ │ ├── draw.html │ │ │ │ ├── large.php │ │ │ │ ├── page.html │ │ │ │ └── sort.html │ │ │ │ ├── templates │ │ │ │ ├── -complex_header.php │ │ │ │ ├── 2512.php │ │ │ │ ├── 6776.php │ │ │ │ ├── complex_header_2.php │ │ │ │ ├── deferred_table.php │ │ │ │ ├── dom_data.php │ │ │ │ ├── dom_data_th.php │ │ │ │ ├── dom_data_two_headers.php │ │ │ │ ├── dymanic_table.php │ │ │ │ ├── empty_table.php │ │ │ │ ├── html_table.php │ │ │ │ ├── js_data.php │ │ │ │ ├── js_data_mixed_types.php │ │ │ │ └── two_tables.php │ │ │ │ ├── tests │ │ │ │ └── 1_dom │ │ │ │ │ └── _zero_config.js │ │ │ │ ├── tests_onhold │ │ │ │ ├── 1_dom │ │ │ │ │ ├── -complex_header.js │ │ │ │ │ ├── -iDraw.js │ │ │ │ │ ├── 2512.js │ │ │ │ │ ├── 2530-2.js │ │ │ │ │ ├── 2530.js │ │ │ │ │ ├── 2569.js │ │ │ │ │ ├── 2600.js │ │ │ │ │ ├── 2608.js │ │ │ │ │ ├── 2635.js │ │ │ │ │ ├── 2746-stable-sort.js │ │ │ │ │ ├── 2799.js │ │ │ │ │ ├── 2840-restore-table-width.js │ │ │ │ │ ├── 2914-state-save-sort.js │ │ │ │ │ ├── 5396-fnUpdate-arrays-mData.js │ │ │ │ │ ├── 5396-fnUpdate-arrays.js │ │ │ │ │ ├── 5508-xscroll-zero-content.js │ │ │ │ │ ├── 6776-scrolling-table-grows.js │ │ │ │ │ ├── _getDataFunctions.js │ │ │ │ │ ├── _setDataFunctions.js │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.bVisible2.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfiniteScroll.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bJQueryUI.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortCellsTop.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnCookieCallback.js │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ ├── fnDeleteRow.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnFilter.js │ │ │ │ │ ├── fnFooterCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInfoCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── fnSetColumnVis.js │ │ │ │ │ ├── fnSetColumnVis2.js │ │ │ │ │ ├── html-autodetect-sort.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ ├── sPaginationType.js │ │ │ │ │ ├── sScrollXY.js │ │ │ │ │ └── th_in_body.js │ │ │ │ ├── 2_js │ │ │ │ │ ├── 39-nested-null.js │ │ │ │ │ ├── 6872-default-content-missing-props.js │ │ │ │ │ ├── 8549--string-sorting-nonstrings.js │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnFooterCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── js_data_mixed_types.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ ├── 3_ajax │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── fnServerData.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sLoadingRecords.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxDataProp.js │ │ │ │ │ ├── sAjaxDataProp2.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ ├── 4_server-side │ │ │ │ │ ├── -iDraw.js │ │ │ │ │ ├── 2440.js │ │ │ │ │ ├── 2569.js │ │ │ │ │ ├── 2600.js │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfiniteScroll.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── iDeferLoading.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxDataProp.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ ├── 5_ajax_objects │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── _zero_config_arrays_subobjects.js │ │ │ │ │ ├── _zero_config_deep.js │ │ │ │ │ ├── _zero_config_mDataProp.js │ │ │ │ │ ├── _zero_config_null_source.js │ │ │ │ │ ├── _zero_config_objects.js │ │ │ │ │ ├── _zero_config_objects_subarrays.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── fnServerData.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ └── 6_delayed_rendering │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── fnServerData.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxDataProp.js │ │ │ │ │ ├── sAjaxDataProp2.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ └── unit_test.js │ │ ├── package.json │ │ └── scripts │ │ │ ├── jshint.config │ │ │ ├── make.sh │ │ │ └── unit_tests.sh │ │ ├── Jcrop │ │ ├── MIT-LICENSE.txt │ │ ├── README.md │ │ ├── css │ │ │ ├── Jcrop.gif │ │ │ ├── jquery.Jcrop.css │ │ │ └── jquery.Jcrop.min.css │ │ ├── demos │ │ │ ├── crop.php │ │ │ ├── demo_files │ │ │ │ ├── demos.css │ │ │ │ ├── main.css │ │ │ │ ├── pool.jpg │ │ │ │ ├── sago.jpg │ │ │ │ ├── sagomod.jpg │ │ │ │ └── sagomod.png │ │ │ ├── non-image.html │ │ │ ├── styling.html │ │ │ ├── tutorial1.html │ │ │ ├── tutorial2.html │ │ │ ├── tutorial3.html │ │ │ ├── tutorial4.html │ │ │ └── tutorial5.html │ │ ├── index.html │ │ └── js │ │ │ ├── jquery.Jcrop.js │ │ │ ├── jquery.Jcrop.min.js │ │ │ ├── jquery.color.js │ │ │ └── jquery.min.js │ │ ├── autosize │ │ ├── autosize.jquery.json │ │ ├── bower.json │ │ ├── demo.html │ │ ├── jquery.autosize.js │ │ ├── jquery.autosize.min.js │ │ ├── package.json │ │ └── readme.md │ │ ├── blockUI │ │ └── jquery.blockUI.js │ │ ├── bootstrap-colorpalette │ │ ├── README.md │ │ ├── css │ │ │ ├── bootstrap-colorpalette.css │ │ │ └── example.css │ │ ├── example.html │ │ └── js │ │ │ └── bootstrap-colorpalette.js │ │ ├── bootstrap-colorpicker │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── css │ │ │ └── bootstrap-colorpicker.css │ │ ├── img │ │ │ └── bootstrap-colorpicker │ │ │ │ ├── alpha.png │ │ │ │ ├── hue.png │ │ │ │ └── saturation.png │ │ ├── index.html │ │ ├── js │ │ │ ├── bootstrap-colorpicker.js │ │ │ └── commits.js │ │ └── less │ │ │ └── bootstrap-colorpicker.less │ │ ├── bootstrap-datepicker │ │ ├── .gitignore │ │ ├── .hgignore │ │ ├── .hgtags │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ │ ├── build.less │ │ │ └── build_standalone.less │ │ ├── composer.json │ │ ├── css │ │ │ └── datepicker.css │ │ ├── docs │ │ │ ├── Makefile │ │ │ ├── _static │ │ │ │ └── demo_head.png │ │ │ ├── conf.py │ │ │ ├── events.rst │ │ │ ├── i18n.rst │ │ │ ├── index.rst │ │ │ ├── keyboard.rst │ │ │ ├── make.bat │ │ │ ├── markup.rst │ │ │ ├── methods.rst │ │ │ └── options.rst │ │ ├── js │ │ │ ├── bootstrap-datepicker.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datepicker.ar.js │ │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ │ ├── bootstrap-datepicker.cy.js │ │ │ │ ├── bootstrap-datepicker.da.js │ │ │ │ ├── bootstrap-datepicker.de.js │ │ │ │ ├── bootstrap-datepicker.el.js │ │ │ │ ├── bootstrap-datepicker.es.js │ │ │ │ ├── bootstrap-datepicker.et.js │ │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ │ ├── bootstrap-datepicker.he.js │ │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ │ ├── bootstrap-datepicker.id.js │ │ │ │ ├── bootstrap-datepicker.is.js │ │ │ │ ├── bootstrap-datepicker.it.js │ │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ │ ├── bootstrap-datepicker.ka.js │ │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ │ ├── bootstrap-datepicker.mk.js │ │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ │ ├── bootstrap-datepicker.nl-BE.js │ │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ │ ├── bootstrap-datepicker.no.js │ │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ │ ├── bootstrap-datepicker.sq.js │ │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ │ ├── bootstrap-datepicker.th.js │ │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ │ ├── bootstrap-datepicker.ua.js │ │ │ │ ├── bootstrap-datepicker.uk.js │ │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ ├── less │ │ │ └── datepicker.less │ │ └── tests │ │ │ ├── README.md │ │ │ ├── _coverage.html │ │ │ ├── assets │ │ │ ├── coverage.js │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── mock.js │ │ │ ├── qunit-logging.js │ │ │ ├── qunit.css │ │ │ ├── qunit.js │ │ │ └── utils.js │ │ │ ├── run-qunit.js │ │ │ ├── suites │ │ │ ├── calendar-weeks.js │ │ │ ├── component.js │ │ │ ├── data-api.js │ │ │ ├── events.js │ │ │ ├── formats.js │ │ │ ├── inline.js │ │ │ ├── keyboard_navigation │ │ │ │ ├── 2011.js │ │ │ │ ├── 2012.js │ │ │ │ └── all.js │ │ │ ├── methods.js │ │ │ ├── mouse_navigation │ │ │ │ ├── 2011.js │ │ │ │ ├── 2012.js │ │ │ │ └── all.js │ │ │ ├── noconflict.js │ │ │ └── options.js │ │ │ └── tests.html │ │ ├── bootstrap-daterangepicker │ │ ├── README.md │ │ ├── daterangepicker-bs2.css │ │ ├── daterangepicker-bs3.css │ │ ├── daterangepicker.js │ │ ├── examples.html │ │ ├── moment.js │ │ └── moment.min.js │ │ ├── bootstrap-datetimepicker │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ │ ├── build.less │ │ │ └── build_standalone.less │ │ ├── css │ │ │ └── datetimepicker.css │ │ ├── js │ │ │ ├── bootstrap-datetimepicker.js │ │ │ ├── bootstrap-datetimepicker.min.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datetimepicker.bg.js │ │ │ │ ├── bootstrap-datetimepicker.ca.js │ │ │ │ ├── bootstrap-datetimepicker.cs.js │ │ │ │ ├── bootstrap-datetimepicker.da.js │ │ │ │ ├── bootstrap-datetimepicker.de.js │ │ │ │ ├── bootstrap-datetimepicker.el.js │ │ │ │ ├── bootstrap-datetimepicker.es.js │ │ │ │ ├── bootstrap-datetimepicker.fi.js │ │ │ │ ├── bootstrap-datetimepicker.fr.js │ │ │ │ ├── bootstrap-datetimepicker.he.js │ │ │ │ ├── bootstrap-datetimepicker.hr.js │ │ │ │ ├── bootstrap-datetimepicker.hu.js │ │ │ │ ├── bootstrap-datetimepicker.id.js │ │ │ │ ├── bootstrap-datetimepicker.is.js │ │ │ │ ├── bootstrap-datetimepicker.it.js │ │ │ │ ├── bootstrap-datetimepicker.ja.js │ │ │ │ ├── bootstrap-datetimepicker.kr.js │ │ │ │ ├── bootstrap-datetimepicker.lt.js │ │ │ │ ├── bootstrap-datetimepicker.lv.js │ │ │ │ ├── bootstrap-datetimepicker.ms.js │ │ │ │ ├── bootstrap-datetimepicker.nb.js │ │ │ │ ├── bootstrap-datetimepicker.nl.js │ │ │ │ ├── bootstrap-datetimepicker.pl.js │ │ │ │ ├── bootstrap-datetimepicker.pt-BR.js │ │ │ │ ├── bootstrap-datetimepicker.pt.js │ │ │ │ ├── bootstrap-datetimepicker.ro.js │ │ │ │ ├── bootstrap-datetimepicker.rs-latin.js │ │ │ │ ├── bootstrap-datetimepicker.rs.js │ │ │ │ ├── bootstrap-datetimepicker.ru.js │ │ │ │ ├── bootstrap-datetimepicker.sk.js │ │ │ │ ├── bootstrap-datetimepicker.sl.js │ │ │ │ ├── bootstrap-datetimepicker.sv.js │ │ │ │ ├── bootstrap-datetimepicker.sw.js │ │ │ │ ├── bootstrap-datetimepicker.th.js │ │ │ │ ├── bootstrap-datetimepicker.tr.js │ │ │ │ ├── bootstrap-datetimepicker.ua.js │ │ │ │ ├── bootstrap-datetimepicker.uk.js │ │ │ │ ├── bootstrap-datetimepicker.zh-CN.js │ │ │ │ └── bootstrap-datetimepicker.zh-TW.js │ │ ├── less │ │ │ └── datetimepicker.less │ │ ├── sample │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── img │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ └── bootstrap.min.js │ │ │ ├── index.html │ │ │ └── jquery │ │ │ │ └── jquery-1.8.3.min.js │ │ ├── screenshot │ │ │ ├── standard_day.png │ │ │ ├── standard_day_meridian.png │ │ │ ├── standard_decade.png │ │ │ ├── standard_full.png │ │ │ ├── standard_hour.png │ │ │ ├── standard_hour_meridian.png │ │ │ ├── standard_month.png │ │ │ └── standard_year.png │ │ └── tests │ │ │ ├── README.md │ │ │ ├── _coverage.html │ │ │ ├── assets │ │ │ ├── coverage.js │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── mock.js │ │ │ ├── qunit-logging.js │ │ │ ├── qunit.css │ │ │ ├── qunit.js │ │ │ └── utils.js │ │ │ ├── run-qunit.js │ │ │ ├── suites │ │ │ ├── component.js │ │ │ ├── events.js │ │ │ ├── formats.js │ │ │ ├── inline.js │ │ │ ├── keyboard_navigation │ │ │ │ ├── 2011.js │ │ │ │ ├── 2012.js │ │ │ │ └── all.js │ │ │ ├── mouse_navigation │ │ │ │ ├── 2011.js │ │ │ │ ├── 2012.js │ │ │ │ └── all.js │ │ │ └── options.js │ │ │ ├── tests.html │ │ │ └── tests.min.html │ │ ├── bootstrap-fileupload │ │ ├── bootstrap-fileupload.css │ │ ├── bootstrap-fileupload.js │ │ ├── bootstrap-fileupload.min.css │ │ └── bootstrap-fileupload.min.js │ │ ├── bootstrap-hover-dropdown │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap-hover-dropdown.js │ │ ├── bootstrap-hover-dropdown.min.js │ │ ├── bower.json │ │ └── demo.html │ │ ├── bootstrap-modal │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bs3.html │ │ ├── component.json │ │ ├── composer.json │ │ ├── css │ │ │ ├── bootstrap-modal-bs3patch.css │ │ │ └── bootstrap-modal.css │ │ ├── img │ │ │ └── ajax-loader.gif │ │ ├── index.html │ │ ├── js │ │ │ ├── bootstrap-modal.js │ │ │ └── bootstrap-modalmanager.js │ │ ├── modal_ajax_test.html │ │ └── params.json │ │ ├── bootstrap-paginator │ │ ├── .gitignore │ │ ├── CHANGELOG │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap-paginator.jquery.json │ │ ├── build.sh │ │ ├── build │ │ │ └── bootstrap-paginator.min.js │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrapv3.css │ │ │ ├── bootstrapv3.min.css │ │ │ ├── documentation.css │ │ │ ├── highlight.js │ │ │ │ ├── arta.css │ │ │ │ ├── ascetic.css │ │ │ │ ├── brown_paper.css │ │ │ │ ├── brown_papersq.png │ │ │ │ ├── dark.css │ │ │ │ ├── default.css │ │ │ │ ├── far.css │ │ │ │ ├── github.css │ │ │ │ ├── googlecode.css │ │ │ │ ├── idea.css │ │ │ │ ├── ir_black.css │ │ │ │ ├── magula.css │ │ │ │ ├── monokai.css │ │ │ │ ├── pojoaque.css │ │ │ │ ├── pojoaque.jpg │ │ │ │ ├── rainbow.css │ │ │ │ ├── school_book.css │ │ │ │ ├── school_book.png │ │ │ │ ├── solarized_dark.css │ │ │ │ ├── solarized_light.css │ │ │ │ ├── sunburst.css │ │ │ │ ├── tomorrow-night-blue.css │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ ├── tomorrow-night.css │ │ │ │ ├── tomorrow.css │ │ │ │ ├── vs.css │ │ │ │ ├── xcode.css │ │ │ │ └── zenburn.css │ │ │ └── qunit-1.11.0.css │ │ ├── documentation │ │ │ └── index.html │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ ├── glyphicons-halflings.png │ │ │ └── illustration.png │ │ ├── lib │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── bootstrapv3.js │ │ │ ├── highlight.pack.js │ │ │ ├── jquery-1.9.1.min.js │ │ │ ├── jquery.history.js │ │ │ └── qunit-1.11.0.js │ │ ├── src │ │ │ └── bootstrap-paginator.js │ │ └── test │ │ │ ├── test.html │ │ │ └── testv3.html │ │ ├── bootstrap-social-buttons │ │ ├── LICENSE │ │ ├── README.md │ │ ├── social-buttons-3.css │ │ ├── social-buttons-3.less │ │ ├── social-buttons.css │ │ └── social-buttons.less │ │ ├── bootstrap-switch │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── examples │ │ │ └── index.html │ │ └── static │ │ │ ├── js │ │ │ ├── bootstrap-switch.js │ │ │ └── bootstrap-switch.min.js │ │ │ ├── less │ │ │ ├── bootstrap-switch.less │ │ │ └── deps │ │ │ │ ├── mixins.less │ │ │ │ └── variables.less │ │ │ └── stylesheets │ │ │ ├── bootstrap-switch.css │ │ │ └── flat-ui-fonts.css │ │ ├── bootstrap-timepicker │ │ ├── .bowerrc │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── component.json │ │ ├── composer.json │ │ ├── css │ │ │ ├── bootstrap-timepicker.css │ │ │ └── bootstrap-timepicker.min.css │ │ ├── js │ │ │ ├── bootstrap-timepicker.js │ │ │ └── bootstrap-timepicker.min.js │ │ ├── less │ │ │ └── timepicker.less │ │ ├── package.json │ │ └── spec │ │ │ └── js │ │ │ ├── KeyboardEventsSpec.js │ │ │ ├── MouseEventsSpec.js │ │ │ ├── TimepickerSpec.js │ │ │ ├── fixtures │ │ │ └── timepicker.html │ │ │ └── helpers │ │ │ ├── SpecHelper.js │ │ │ └── jasmine-jquery.js │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ ├── ckeditor │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── fakeobjects │ │ │ │ └── images │ │ │ │ │ └── spacer.gif │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ └── icon.png │ │ │ │ │ └── icon.png │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── scayt │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ │ │ └── specialchar.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmp.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ ├── samples │ │ │ ├── ajax.html │ │ │ ├── api.html │ │ │ ├── appendto.html │ │ │ ├── assets │ │ │ │ ├── inlineall │ │ │ │ │ └── logo.png │ │ │ │ ├── outputxhtml │ │ │ │ │ └── outputxhtml.css │ │ │ │ ├── posteddata.php │ │ │ │ ├── sample.css │ │ │ │ ├── sample.jpg │ │ │ │ └── uilanguages │ │ │ │ │ └── languages.js │ │ │ ├── datafiltering.html │ │ │ ├── divreplace.html │ │ │ ├── index.html │ │ │ ├── inlineall.html │ │ │ ├── inlinebycode.html │ │ │ ├── inlinetextarea.html │ │ │ ├── jquery.html │ │ │ ├── plugins │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── htmlwriter │ │ │ │ │ ├── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ └── outputhtml.html │ │ │ │ ├── magicline │ │ │ │ │ └── magicline.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ └── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ ├── readonly.html │ │ │ ├── replacebyclass.html │ │ │ ├── replacebycode.html │ │ │ ├── sample.css │ │ │ ├── sample.js │ │ │ ├── sample_posteddata.php │ │ │ ├── tabindex.html │ │ │ ├── uicolor.html │ │ │ ├── uilanguages.html │ │ │ └── xhtmlstyle.html │ │ ├── skins │ │ │ └── moono │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── dialog_opera.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ │ └── readme.md │ │ └── styles.js │ │ ├── colorbox │ │ ├── README.md │ │ ├── bower.json │ │ ├── colorbox.ai │ │ ├── colorbox.jquery.json │ │ ├── content │ │ │ ├── ajax.html │ │ │ ├── daisy.jpg │ │ │ ├── daisy@2x.jpg │ │ │ ├── homer.jpg │ │ │ ├── marylou.jpg │ │ │ ├── ohoopee1.jpg │ │ │ ├── ohoopee2.jpg │ │ │ └── ohoopee3.jpg │ │ ├── example1 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── border.png │ │ │ │ ├── controls.png │ │ │ │ ├── loading.gif │ │ │ │ ├── loading_background.png │ │ │ │ └── overlay.png │ │ │ └── index.html │ │ ├── example2 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── controls.png │ │ │ │ └── loading.gif │ │ │ └── index.html │ │ ├── example3 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── controls.png │ │ │ │ └── loading.gif │ │ │ └── index.html │ │ ├── example4 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── border1.png │ │ │ │ ├── border2.png │ │ │ │ └── loading.gif │ │ │ └── index.html │ │ ├── example5 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── border.png │ │ │ │ ├── controls.png │ │ │ │ ├── loading.gif │ │ │ │ └── loading_background.png │ │ │ └── index.html │ │ ├── i18n │ │ │ ├── jquery.colorbox-ar.js │ │ │ ├── jquery.colorbox-bg.js │ │ │ ├── jquery.colorbox-cs.js │ │ │ ├── jquery.colorbox-da.js │ │ │ ├── jquery.colorbox-de.js │ │ │ ├── jquery.colorbox-es.js │ │ │ ├── jquery.colorbox-et.js │ │ │ ├── jquery.colorbox-fa.js │ │ │ ├── jquery.colorbox-fi.js │ │ │ ├── jquery.colorbox-fr.js │ │ │ ├── jquery.colorbox-gl.js │ │ │ ├── jquery.colorbox-he.js │ │ │ ├── jquery.colorbox-hr.js │ │ │ ├── jquery.colorbox-hu.js │ │ │ ├── jquery.colorbox-id.js │ │ │ ├── jquery.colorbox-it.js │ │ │ ├── jquery.colorbox-ja.js │ │ │ ├── jquery.colorbox-kr.js │ │ │ ├── jquery.colorbox-lv.js │ │ │ ├── jquery.colorbox-nl.js │ │ │ ├── jquery.colorbox-no.js │ │ │ ├── jquery.colorbox-pl.js │ │ │ ├── jquery.colorbox-pt-br.js │ │ │ ├── jquery.colorbox-ro.js │ │ │ ├── jquery.colorbox-ru.js │ │ │ ├── jquery.colorbox-si.js │ │ │ ├── jquery.colorbox-sk.js │ │ │ ├── jquery.colorbox-sv.js │ │ │ ├── jquery.colorbox-tr.js │ │ │ ├── jquery.colorbox-uk.js │ │ │ └── jquery.colorbox-zh-CN.js │ │ ├── jquery.colorbox-min.js │ │ └── jquery.colorbox.js │ │ ├── css3-animation │ │ └── animations.css │ │ ├── datepicker │ │ ├── css │ │ │ └── datepicker.css │ │ ├── js │ │ │ └── bootstrap-datepicker.js │ │ └── less │ │ │ └── datepicker.less │ │ ├── dropzone │ │ ├── .gitignore │ │ ├── .tagconfig │ │ ├── .travis.yml │ │ ├── AMD_footer │ │ ├── AMD_header │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.coffee │ │ ├── bower.json │ │ ├── component.json │ │ ├── downloads │ │ │ ├── css │ │ │ │ ├── basic.css │ │ │ │ ├── dropzone.css │ │ │ │ └── stylus │ │ │ │ │ ├── basic.styl │ │ │ │ │ └── dropzone.styl │ │ │ ├── dropzone-amd-module.js │ │ │ ├── dropzone-amd-module.min.js │ │ │ ├── dropzone.js │ │ │ ├── dropzone.min.js │ │ │ └── images │ │ │ │ ├── spritemap.png │ │ │ │ └── spritemap@2x.png │ │ ├── index.js │ │ ├── lib │ │ │ └── dropzone.js │ │ ├── npm_publish.sh │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ │ └── dropzone.coffee │ │ └── test │ │ │ ├── test.coffee │ │ │ ├── test.html │ │ │ └── test.js │ │ ├── dynatree │ │ ├── GPL-LICENSE.txt │ │ ├── MIT-License.txt │ │ ├── dist │ │ │ ├── jquery.dynatree-1.2.4.js │ │ │ └── jquery.dynatree.min.js │ │ ├── doc │ │ │ ├── contextmenu │ │ │ │ ├── images │ │ │ │ │ ├── cut.png │ │ │ │ │ ├── door.png │ │ │ │ │ ├── page_white_copy.png │ │ │ │ │ ├── page_white_delete.png │ │ │ │ │ ├── page_white_edit.png │ │ │ │ │ └── page_white_paste.png │ │ │ │ ├── jquery.contextMenu-custom.js │ │ │ │ └── jquery.contextMenu.css │ │ │ ├── dynatree-doc.html │ │ │ ├── dynatree_server.py │ │ │ ├── howto.css │ │ │ ├── howto.js │ │ │ ├── iconInfo_32x32.png │ │ │ ├── iconWarning_32x32.png │ │ │ ├── icons-vista.psp │ │ │ ├── icons-xp.psp │ │ │ ├── icons_layout.ods │ │ │ ├── jq.context │ │ │ │ ├── images │ │ │ │ │ ├── cut.png │ │ │ │ │ ├── door.png │ │ │ │ │ ├── page_white_copy.png │ │ │ │ │ ├── page_white_delete.png │ │ │ │ │ ├── page_white_edit.png │ │ │ │ │ └── page_white_paste.png │ │ │ │ ├── jquery.contextMenu.css │ │ │ │ ├── jquery.contextMenu.js │ │ │ │ └── jquery.ui.position.js │ │ │ ├── jquery.planize.js │ │ │ ├── nav_bg.png │ │ │ ├── prettify.css │ │ │ ├── prettify.js │ │ │ ├── sample-api.html │ │ │ ├── sample-contextmenu.html │ │ │ ├── sample-contextmenu2.html │ │ │ ├── sample-data1.json │ │ │ ├── sample-data2.json │ │ │ ├── sample-data3.json │ │ │ ├── sample-default.html │ │ │ ├── sample-dnd.html │ │ │ ├── sample-dnd2.html │ │ │ ├── sample-dnd3.html │ │ │ ├── sample-effects.html │ │ │ ├── sample-empty.json │ │ │ ├── sample-events.html │ │ │ ├── sample-form.html │ │ │ ├── sample-iframe-1.html │ │ │ ├── sample-iframe.html │ │ │ ├── sample-init-lazy.html │ │ │ ├── sample-inline-edit.html │ │ │ ├── sample-lazy.html │ │ │ ├── sample-minexpand.html │ │ │ ├── sample-multiline.html │ │ │ ├── sample-persist.html │ │ │ ├── sample-pyserver.html │ │ │ ├── sample-quick.html │ │ │ ├── sample-rtl.html │ │ │ ├── sample-select.html │ │ │ ├── sample-theming.html │ │ │ ├── sample-ul.html │ │ │ ├── sample.css │ │ │ ├── sample.js │ │ │ ├── samples-nav.html │ │ │ ├── samples-top.html │ │ │ ├── samples-welcome.html │ │ │ ├── samples.html │ │ │ ├── skin-custom │ │ │ │ ├── custom.css │ │ │ │ ├── customDoc1.gif │ │ │ │ ├── customDoc2.gif │ │ │ │ ├── customFolder1.gif │ │ │ │ ├── doc_with_children.gif │ │ │ │ ├── folder_docs.gif │ │ │ │ ├── folder_images.gif │ │ │ │ └── folder_page.gif │ │ │ ├── test-bench.html │ │ │ ├── test-css.html │ │ │ ├── test-dtd-html4-strict.html │ │ │ ├── test-dtd-html4-transitional.html │ │ │ ├── test-dtd-html5.html │ │ │ ├── test-dtd-none.html │ │ │ ├── test-dtd-xml-strict.html │ │ │ ├── test-dtd-xml-transitional.html │ │ │ ├── test-latest.html │ │ │ ├── test-persist.html │ │ │ ├── test-preload.html │ │ │ ├── test-release.html │ │ │ ├── test-table.html │ │ │ └── test-xhtml.xhtml │ │ ├── grunt.js │ │ ├── index.html │ │ ├── jquery │ │ │ ├── README.txt │ │ │ ├── jquery-ui.custom.js │ │ │ ├── jquery-ui.custom.min.js │ │ │ ├── jquery.cookie.js │ │ │ ├── jquery.js │ │ │ └── jquery.min.js │ │ ├── package.json │ │ ├── src │ │ │ ├── GPL-LICENSE.txt │ │ │ ├── MIT-License.txt │ │ │ ├── jquery.dynatree.js │ │ │ ├── skin-vista │ │ │ │ ├── icons.gif │ │ │ │ ├── loading.gif │ │ │ │ └── ui.dynatree.css │ │ │ └── skin │ │ │ │ ├── icons-rtl.gif │ │ │ │ ├── icons.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── ui.dynatree.css │ │ │ │ ├── vline-rtl.gif │ │ │ │ └── vline.gif │ │ └── tests │ │ │ ├── qunit.css │ │ │ ├── qunit.js │ │ │ ├── sample-data1.json │ │ │ ├── sample-data2.json │ │ │ ├── test-adhoc.html │ │ │ ├── test-bench.html │ │ │ ├── test-dynatree.js │ │ │ ├── test.html │ │ │ └── tests - Shortcut.lnk │ │ ├── excanvas.min.js │ │ ├── flot │ │ ├── API.md │ │ ├── CONTRIBUTING.md │ │ ├── FAQ.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── NEWS.md │ │ ├── PLUGINS.md │ │ ├── README.md │ │ ├── build.log │ │ ├── examples │ │ │ ├── ajax │ │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ │ ├── data-eu-gdp-growth-5.json │ │ │ │ ├── data-eu-gdp-growth.json │ │ │ │ ├── data-japan-gdp-growth.json │ │ │ │ ├── data-usa-gdp-growth.json │ │ │ │ └── index.html │ │ │ ├── annotating │ │ │ │ └── index.html │ │ │ ├── axes-interacting │ │ │ │ └── index.html │ │ │ ├── axes-multiple │ │ │ │ └── index.html │ │ │ ├── axes-time-zones │ │ │ │ ├── date.js │ │ │ │ ├── index.html │ │ │ │ └── tz │ │ │ │ │ ├── africa │ │ │ │ │ ├── antarctica │ │ │ │ │ ├── asia │ │ │ │ │ ├── australasia │ │ │ │ │ ├── backward │ │ │ │ │ ├── etcetera │ │ │ │ │ ├── europe │ │ │ │ │ ├── factory │ │ │ │ │ ├── iso3166.tab │ │ │ │ │ ├── leapseconds │ │ │ │ │ ├── northamerica │ │ │ │ │ ├── pacificnew │ │ │ │ │ ├── solar87 │ │ │ │ │ ├── solar88 │ │ │ │ │ ├── solar89 │ │ │ │ │ ├── southamerica │ │ │ │ │ ├── systemv │ │ │ │ │ ├── yearistype.sh │ │ │ │ │ └── zone.tab │ │ │ ├── axes-time │ │ │ │ └── index.html │ │ │ ├── background.png │ │ │ ├── basic-options │ │ │ │ └── index.html │ │ │ ├── basic-usage │ │ │ │ └── index.html │ │ │ ├── canvas │ │ │ │ └── index.html │ │ │ ├── categories │ │ │ │ └── index.html │ │ │ ├── examples.css │ │ │ ├── image │ │ │ │ ├── hs-2004-27-a-large-web.jpg │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── interacting │ │ │ │ └── index.html │ │ │ ├── navigate │ │ │ │ ├── arrow-down.gif │ │ │ │ ├── arrow-left.gif │ │ │ │ ├── arrow-right.gif │ │ │ │ ├── arrow-up.gif │ │ │ │ └── index.html │ │ │ ├── percentiles │ │ │ │ └── index.html │ │ │ ├── realtime │ │ │ │ └── index.html │ │ │ ├── resize │ │ │ │ └── index.html │ │ │ ├── selection │ │ │ │ └── index.html │ │ │ ├── series-errorbars │ │ │ │ └── index.html │ │ │ ├── series-pie │ │ │ │ └── index.html │ │ │ ├── series-toggle │ │ │ │ └── index.html │ │ │ ├── series-types │ │ │ │ └── index.html │ │ │ ├── shared │ │ │ │ └── jquery-ui │ │ │ │ │ ├── jquery-ui.min.css │ │ │ │ │ └── jquery-ui.min.js │ │ │ ├── stacking │ │ │ │ └── index.html │ │ │ ├── symbols │ │ │ │ └── index.html │ │ │ ├── threshold │ │ │ │ └── index.html │ │ │ ├── tracking │ │ │ │ └── index.html │ │ │ ├── visitors │ │ │ │ └── index.html │ │ │ └── zooming │ │ │ │ └── index.html │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── jquery.colorhelpers.js │ │ ├── jquery.colorhelpers.min.js │ │ ├── jquery.flot.canvas.js │ │ ├── jquery.flot.canvas.min.js │ │ ├── jquery.flot.categories.js │ │ ├── jquery.flot.categories.min.js │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.crosshair.min.js │ │ ├── jquery.flot.errorbars.js │ │ ├── jquery.flot.errorbars.min.js │ │ ├── jquery.flot.fillbetween.js │ │ ├── jquery.flot.fillbetween.min.js │ │ ├── jquery.flot.image.js │ │ ├── jquery.flot.image.min.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.min.js │ │ ├── jquery.flot.navigate.js │ │ ├── jquery.flot.navigate.min.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.pie.min.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.resize.min.js │ │ ├── jquery.flot.selection.js │ │ ├── jquery.flot.selection.min.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.flot.stack.min.js │ │ ├── jquery.flot.symbol.js │ │ ├── jquery.flot.symbol.min.js │ │ ├── jquery.flot.threshold.js │ │ ├── jquery.flot.threshold.min.js │ │ ├── jquery.flot.time.js │ │ ├── jquery.flot.time.min.js │ │ ├── jquery.js │ │ └── jquery.min.js │ │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── spinning.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _spinning.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ ├── fullcalendar │ │ ├── changelog.txt │ │ ├── demos │ │ │ ├── agenda-views.html │ │ │ ├── basic-views.html │ │ │ ├── cupertino │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png │ │ │ │ │ ├── ui-bg_flat_15_cd0a0a_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_e4f1fb_1x400.png │ │ │ │ │ ├── ui-bg_glass_50_3baae3_1x400.png │ │ │ │ │ ├── ui-bg_glass_80_d7ebf9_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_70_000000_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_deedf7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_25_ffef8f_1x100.png │ │ │ │ │ ├── ui-icons_2694e8_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_3d80b3_256x240.png │ │ │ │ │ ├── ui-icons_72a7cf_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ └── jquery-ui.min.css │ │ │ ├── default.html │ │ │ ├── external-dragging.html │ │ │ ├── gcal.html │ │ │ ├── json-events.php │ │ │ ├── json.html │ │ │ ├── selectable.html │ │ │ └── theme.html │ │ ├── fullcalendar │ │ │ ├── fullcalendar.css │ │ │ ├── fullcalendar.js │ │ │ ├── fullcalendar.min.js │ │ │ ├── fullcalendar.print.css │ │ │ └── gcal.js │ │ ├── lib │ │ │ ├── jquery-ui.custom.min.js │ │ │ └── jquery.min.js │ │ └── license.txt │ │ ├── gmaps │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── bower.json │ │ ├── examples │ │ │ ├── basic.html │ │ │ ├── context_menu.html │ │ │ ├── custom_controls.html │ │ │ ├── elevation_locations.html │ │ │ ├── elevation_routes.html │ │ │ ├── examples.css │ │ │ ├── fusion_tables.html │ │ │ ├── geocoding.html │ │ │ ├── geofences.html │ │ │ ├── geolocation.html │ │ │ ├── geometry.html │ │ │ ├── kml.html │ │ │ ├── layers.html │ │ │ ├── layers_places.html │ │ │ ├── map_events.html │ │ │ ├── map_types.html │ │ │ ├── marker_clusterer.html │ │ │ ├── markers.html │ │ │ ├── overlay_map_types.html │ │ │ ├── overlays.html │ │ │ ├── polygons.html │ │ │ ├── polylines.html │ │ │ ├── routes.html │ │ │ ├── routes_advanced.html │ │ │ ├── static.html │ │ │ ├── static_markers.html │ │ │ ├── static_polylines.html │ │ │ ├── styled_maps.html │ │ │ └── travel_route.html │ │ ├── gmaps.js │ │ ├── lib │ │ │ ├── gmaps.controls.js │ │ │ ├── gmaps.core.js │ │ │ ├── gmaps.events.js │ │ │ ├── gmaps.geofences.js │ │ │ ├── gmaps.geometry.js │ │ │ ├── gmaps.layers.js │ │ │ ├── gmaps.map_types.js │ │ │ ├── gmaps.markers.js │ │ │ ├── gmaps.native_extensions.js │ │ │ ├── gmaps.overlays.js │ │ │ ├── gmaps.routes.js │ │ │ ├── gmaps.static.js │ │ │ ├── gmaps.streetview.js │ │ │ ├── gmaps.styles.js │ │ │ └── gmaps.utils.js │ │ ├── package.json │ │ └── test │ │ │ ├── index.html │ │ │ ├── lib │ │ │ ├── jasmine-html.js │ │ │ ├── jasmine.css │ │ │ └── jasmine.js │ │ │ ├── spec │ │ │ ├── EventSpec.js │ │ │ ├── GeometrySpec.js │ │ │ ├── LayerSpec.js │ │ │ ├── MapSpec.js │ │ │ ├── MarkerSpec.js │ │ │ ├── OverlaySpec.js │ │ │ ├── RouteSpec.js │ │ │ ├── StreetViewSpec.js │ │ │ └── StyleSpec.js │ │ │ ├── style.css │ │ │ └── template │ │ │ └── jasmine-gmaps.html │ │ ├── gritter │ │ ├── README.markdown │ │ ├── css │ │ │ └── jquery.gritter.css │ │ ├── images │ │ │ ├── gritter-light.png │ │ │ ├── gritter-long.png │ │ │ ├── gritter.png │ │ │ ├── ie-spacer.gif │ │ │ └── trees.jpg │ │ ├── index.html │ │ ├── js │ │ │ ├── jquery.gritter.js │ │ │ └── jquery.gritter.min.js │ │ └── package.json │ │ ├── iCheck │ │ ├── README.md │ │ ├── demo │ │ │ ├── css │ │ │ │ ├── custom.css │ │ │ │ ├── custom.styl │ │ │ │ ├── icheck.png │ │ │ │ ├── ie │ │ │ │ │ ├── arrow-bottom.png │ │ │ │ │ ├── arrow-top.png │ │ │ │ │ ├── header-line.png │ │ │ │ │ ├── icon-fork.png │ │ │ │ │ ├── icon-github.png │ │ │ │ │ ├── icon-lab.png │ │ │ │ │ ├── icon-options.png │ │ │ │ │ └── icon-star.png │ │ │ │ ├── montserrat-bold.eot │ │ │ │ ├── montserrat-bold.svg │ │ │ │ ├── montserrat-bold.ttf │ │ │ │ ├── montserrat-bold.woff │ │ │ │ ├── montserrat-regular.eot │ │ │ │ ├── montserrat-regular.svg │ │ │ │ ├── montserrat-regular.ttf │ │ │ │ ├── montserrat-regular.woff │ │ │ │ └── normalize.css │ │ │ ├── index.html │ │ │ └── js │ │ │ │ ├── custom.js │ │ │ │ ├── jquery.js │ │ │ │ └── zepto.js │ │ ├── jquery.icheck.js │ │ ├── jquery.icheck.min.js │ │ ├── skins │ │ │ ├── all.css │ │ │ ├── flat │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── flat.css │ │ │ │ ├── flat.png │ │ │ │ ├── flat@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── futurico │ │ │ │ ├── futurico.css │ │ │ │ ├── futurico.png │ │ │ │ └── futurico@2x.png │ │ │ ├── line │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── blue.css │ │ │ │ ├── green.css │ │ │ │ ├── grey.css │ │ │ │ ├── line.css │ │ │ │ ├── line.png │ │ │ │ ├── line@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── pink.css │ │ │ │ ├── purple.css │ │ │ │ ├── red.css │ │ │ │ └── yellow.css │ │ │ ├── minimal │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── minimal.css │ │ │ │ ├── minimal.png │ │ │ │ ├── minimal@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── polaris │ │ │ │ ├── polaris.css │ │ │ │ ├── polaris.png │ │ │ │ └── polaris@2x.png │ │ │ ├── square │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── square.css │ │ │ │ ├── square.png │ │ │ │ ├── square@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ └── ui_sliders.html │ │ ├── zepto.icheck.js │ │ └── zepto.icheck.min.js │ │ ├── jQRangeSlider │ │ ├── GPL-License.txt │ │ ├── History.md │ │ ├── MIT-License.txt │ │ ├── Readme.md │ │ ├── css │ │ │ ├── classic-min.css │ │ │ ├── classic.css │ │ │ ├── iThing-min.css │ │ │ ├── iThing.css │ │ │ └── icons-classic │ │ │ │ ├── label.png │ │ │ │ ├── resultset_next.png │ │ │ │ └── resultset_previous.png │ │ ├── demo │ │ │ ├── dateSliderDemo.js │ │ │ ├── demo.js │ │ │ ├── editSliderDemo.js │ │ │ ├── img │ │ │ │ ├── calendar.png │ │ │ │ ├── classicTheme.png │ │ │ │ └── iThingTheme.png │ │ │ ├── index.html │ │ │ ├── lib │ │ │ │ └── jquery-ui │ │ │ │ │ ├── css │ │ │ │ │ └── smoothness │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ └── jquery-ui-1.8.10.custom.css │ │ │ │ │ └── js │ │ │ │ │ └── jquery-ui-1.8.16.custom.min.js │ │ │ ├── sliderDemo.js │ │ │ └── style.css │ │ ├── jQAllRangeSliders-min.js │ │ ├── jQAllRangeSliders-withRuler-min.js │ │ ├── jQDateRangeSlider-min.js │ │ ├── jQDateRangeSlider-withRuler-min.js │ │ ├── jQEditRangeSlider-min.js │ │ ├── jQEditRangeSlider-withRuler-min.js │ │ ├── jQRangeSlider-min.js │ │ ├── jQRangeSlider-withRuler-min.js │ │ └── lib │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── jquery-ui-1.8.16.custom.min.js │ │ │ ├── jquery-ui.license.txt │ │ │ ├── jquery.license.txt │ │ │ ├── jquery.mousewheel.license.txt │ │ │ └── jquery.mousewheel.min.js │ │ ├── jQuery-File-Upload │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── angularjs.html │ │ ├── basic-plus.html │ │ ├── basic.html │ │ ├── blueimp-file-upload.jquery.json │ │ ├── bower.json │ │ ├── cors │ │ │ ├── postmessage.html │ │ │ └── result.html │ │ ├── css │ │ │ ├── demo-ie8.css │ │ │ ├── demo.css │ │ │ ├── jquery.fileupload-ui-noscript.css │ │ │ ├── jquery.fileupload-ui.css │ │ │ └── style.css │ │ ├── img │ │ │ ├── loading.gif │ │ │ └── progressbar.gif │ │ ├── index.html │ │ ├── jquery-ui.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── cors │ │ │ │ ├── jquery.postmessage-transport.js │ │ │ │ └── jquery.xdr-transport.js │ │ │ ├── jquery.fileupload-angular.js │ │ │ ├── jquery.fileupload-audio.js │ │ │ ├── jquery.fileupload-image.js │ │ │ ├── jquery.fileupload-jquery-ui.js │ │ │ ├── jquery.fileupload-process.js │ │ │ ├── jquery.fileupload-ui.js │ │ │ ├── jquery.fileupload-validate.js │ │ │ ├── jquery.fileupload-video.js │ │ │ ├── jquery.fileupload.js │ │ │ ├── jquery.iframe-transport.js │ │ │ ├── main.js │ │ │ └── vendor │ │ │ │ └── jquery.ui.widget.js │ │ ├── package.json │ │ ├── server │ │ │ ├── gae-go │ │ │ │ ├── app.yaml │ │ │ │ ├── app │ │ │ │ │ └── main.go │ │ │ │ └── static │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── robots.txt │ │ │ ├── gae-python │ │ │ │ ├── app.yaml │ │ │ │ ├── main.py │ │ │ │ └── static │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── robots.txt │ │ │ ├── node │ │ │ │ ├── .gitignore │ │ │ │ ├── package.json │ │ │ │ ├── public │ │ │ │ │ └── files │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── server.js │ │ │ │ └── tmp │ │ │ │ │ └── .gitignore │ │ │ └── php │ │ │ │ ├── UploadHandler.php │ │ │ │ ├── files │ │ │ │ ├── .gitignore │ │ │ │ └── .htaccess │ │ │ │ └── index.php │ │ └── test │ │ │ ├── index.html │ │ │ └── test.js │ │ ├── jQuery-Knob │ │ ├── README.md │ │ ├── index.html │ │ ├── js │ │ │ ├── jquery.knob-rtl.js │ │ │ └── jquery.knob.js │ │ └── knob.jquery.json │ │ ├── jQuery-Smart-Wizard │ │ ├── README.md │ │ ├── images │ │ │ └── loader.gif │ │ ├── index.htm │ │ ├── js │ │ │ ├── jquery-2.0.0.min.js │ │ │ └── jquery.smartWizard.js │ │ ├── more_examples │ │ │ ├── services │ │ │ │ └── service.php │ │ │ ├── smartwizard2-ajax.htm │ │ │ └── smartwizard2-validation.php │ │ ├── smartwizard-autostep.htm │ │ ├── smartwizard2-ajax.htm │ │ ├── smartwizard2-multiple.htm │ │ ├── smartwizard2-validation.htm │ │ ├── smartwizard2-vertical.htm │ │ └── styles │ │ │ ├── demo_style.css │ │ │ ├── smart_wizard.css │ │ │ └── smart_wizard_vertical.css │ │ ├── jQuery-Tags-Input │ │ ├── README.md │ │ ├── bower.json │ │ ├── example.html │ │ ├── jquery.tagsinput.css │ │ ├── jquery.tagsinput.js │ │ ├── jquery.tagsinput.min.js │ │ └── test │ │ │ ├── fake_json_endpoint.html │ │ │ └── fake_plaintext_endpoint.html │ │ ├── jqGrid │ │ ├── css │ │ │ ├── ellipsis-xbl.xml │ │ │ └── ui.jqgrid.css │ │ ├── js │ │ │ ├── Changes.txt │ │ │ ├── i18n │ │ │ │ ├── grid.locale-ar.js │ │ │ │ ├── grid.locale-bg.js │ │ │ │ ├── grid.locale-bg1251.js │ │ │ │ ├── grid.locale-cat.js │ │ │ │ ├── grid.locale-cn.js │ │ │ │ ├── grid.locale-cs.js │ │ │ │ ├── grid.locale-da.js │ │ │ │ ├── grid.locale-de.js │ │ │ │ ├── grid.locale-dk.js │ │ │ │ ├── grid.locale-el.js │ │ │ │ ├── grid.locale-en.js │ │ │ │ ├── grid.locale-es.js │ │ │ │ ├── grid.locale-fa.js │ │ │ │ ├── grid.locale-fi.js │ │ │ │ ├── grid.locale-fr.js │ │ │ │ ├── grid.locale-gl.js │ │ │ │ ├── grid.locale-he.js │ │ │ │ ├── grid.locale-hr.js │ │ │ │ ├── grid.locale-hr1250.js │ │ │ │ ├── grid.locale-hu.js │ │ │ │ ├── grid.locale-id.js │ │ │ │ ├── grid.locale-is.js │ │ │ │ ├── grid.locale-it.js │ │ │ │ ├── grid.locale-ja.js │ │ │ │ ├── grid.locale-kr.js │ │ │ │ ├── grid.locale-lt.js │ │ │ │ ├── grid.locale-mne.js │ │ │ │ ├── grid.locale-nl.js │ │ │ │ ├── grid.locale-no.js │ │ │ │ ├── grid.locale-pl.js │ │ │ │ ├── grid.locale-pt-br.js │ │ │ │ ├── grid.locale-pt.js │ │ │ │ ├── grid.locale-ro.js │ │ │ │ ├── grid.locale-ru.js │ │ │ │ ├── grid.locale-sk.js │ │ │ │ ├── grid.locale-sr-latin.js │ │ │ │ ├── grid.locale-sr.js │ │ │ │ ├── grid.locale-sv.js │ │ │ │ ├── grid.locale-th.js │ │ │ │ ├── grid.locale-tr.js │ │ │ │ ├── grid.locale-tw.js │ │ │ │ ├── grid.locale-ua.js │ │ │ │ └── grid.locale-vi.js │ │ │ ├── install.txt │ │ │ ├── jquery-1.7.2.min.js │ │ │ ├── jquery.jqGrid.min.js │ │ │ └── jquery.jqGrid.src.js │ │ ├── plugins │ │ │ ├── grid.addons.js │ │ │ ├── grid.postext.js │ │ │ ├── grid.setcolumns.js │ │ │ ├── jquery.contextmenu.js │ │ │ ├── jquery.searchFilter.js │ │ │ ├── jquery.tablednd.js │ │ │ ├── searchFilter.css │ │ │ ├── ui.multiselect.css │ │ │ └── ui.multiselect.js │ │ └── src │ │ │ ├── JsonXml.js │ │ │ ├── css │ │ │ ├── ellipsis-xbl.xml │ │ │ ├── ui.jqgrid.css │ │ │ └── ui.multiselect.css │ │ │ ├── grid.base.js │ │ │ ├── grid.celledit.js │ │ │ ├── grid.common.js │ │ │ ├── grid.custom.js │ │ │ ├── grid.filter.js │ │ │ ├── grid.formedit.js │ │ │ ├── grid.grouping.js │ │ │ ├── grid.import.js │ │ │ ├── grid.inlinedit.js │ │ │ ├── grid.jqueryui.js │ │ │ ├── grid.loader.js │ │ │ ├── grid.subgrid.js │ │ │ ├── grid.tbltogrid.js │ │ │ ├── grid.treegrid.js │ │ │ ├── i18n │ │ │ ├── grid.locale-ar.js │ │ │ ├── grid.locale-bg.js │ │ │ ├── grid.locale-bg1251.js │ │ │ ├── grid.locale-cat.js │ │ │ ├── grid.locale-cn.js │ │ │ ├── grid.locale-cs.js │ │ │ ├── grid.locale-da.js │ │ │ ├── grid.locale-de.js │ │ │ ├── grid.locale-dk.js │ │ │ ├── grid.locale-el.js │ │ │ ├── grid.locale-en.js │ │ │ ├── grid.locale-es.js │ │ │ ├── grid.locale-fa.js │ │ │ ├── grid.locale-fi.js │ │ │ ├── grid.locale-fr.js │ │ │ ├── grid.locale-gl.js │ │ │ ├── grid.locale-he.js │ │ │ ├── grid.locale-hr.js │ │ │ ├── grid.locale-hr1250.js │ │ │ ├── grid.locale-hu.js │ │ │ ├── grid.locale-id.js │ │ │ ├── grid.locale-is.js │ │ │ ├── grid.locale-it.js │ │ │ ├── grid.locale-ja.js │ │ │ ├── grid.locale-kr.js │ │ │ ├── grid.locale-lt.js │ │ │ ├── grid.locale-mne.js │ │ │ ├── grid.locale-nl.js │ │ │ ├── grid.locale-no.js │ │ │ ├── grid.locale-pl.js │ │ │ ├── grid.locale-pt-br.js │ │ │ ├── grid.locale-pt.js │ │ │ ├── grid.locale-ro.js │ │ │ ├── grid.locale-ru.js │ │ │ ├── grid.locale-sk.js │ │ │ ├── grid.locale-sr-latin.js │ │ │ ├── grid.locale-sr.js │ │ │ ├── grid.locale-sv.js │ │ │ ├── grid.locale-th.js │ │ │ ├── grid.locale-tr.js │ │ │ ├── grid.locale-tw.js │ │ │ ├── grid.locale-ua.js │ │ │ └── grid.locale-vi.js │ │ │ ├── jqDnR.js │ │ │ ├── jqModal.js │ │ │ └── jquery.fmatter.js │ │ ├── jquery-address │ │ ├── address.css │ │ └── address.js │ │ ├── jquery-cookie │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── .tm_properties │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── MIT-LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── cookie.jquery.json │ │ ├── jquery.cookie.js │ │ ├── package.json │ │ └── test │ │ │ ├── index.html │ │ │ ├── malformed_cookie.html │ │ │ ├── server.js │ │ │ └── tests.js │ │ ├── jquery-easy-pie-chart │ │ ├── Makefile │ │ ├── Readme.md │ │ ├── examples │ │ │ ├── excanvas.js │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── img │ │ │ └── easy-pie-chart.png │ │ ├── jquery.easy-pie-chart.coffee │ │ └── jquery.easy-pie-chart.js │ │ ├── jquery-inputlimiter │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ ├── LICENSE.txt.svn-base │ │ │ │ ├── demo.htm.svn-base │ │ │ │ ├── jquery-1.7.2.min.js.svn-base │ │ │ │ ├── jquery.inputlimiter.1.0.css.svn-base │ │ │ │ ├── jquery.inputlimiter.1.3.1.js.svn-base │ │ │ │ └── jquery.inputlimiter.1.3.1.min.js.svn-base │ │ ├── LICENSE.txt │ │ ├── demo.htm │ │ ├── jquery-1.7.2.min.js │ │ ├── jquery.inputlimiter.1.0.css │ │ ├── jquery.inputlimiter.1.3.1.js │ │ └── jquery.inputlimiter.1.3.1.min.js │ │ ├── jquery-maskmoney │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.html │ │ ├── jquery.maskMoney.js │ │ └── maskmoney.jquery.json │ │ ├── jquery-migrate │ │ └── jquery-migrate-1.2.1.min.js │ │ ├── jquery-mockjax │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── jquery.mockjax.js │ │ ├── lib │ │ │ ├── jquery-1.3.2.js │ │ │ ├── jquery-1.4.4.js │ │ │ ├── jquery-1.5.2.js │ │ │ ├── jquery-1.6.4.js │ │ │ ├── jquery-1.7.2.js │ │ │ ├── jquery-1.8.3.js │ │ │ ├── jquery-1.9.1.js │ │ │ ├── jquery-2.0.0.js │ │ │ ├── jquery.xmldom.js │ │ │ ├── json2.js │ │ │ ├── qunit.css │ │ │ ├── qunit.js │ │ │ └── testswarm.js │ │ ├── package.json │ │ ├── test │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── test.js │ │ │ ├── test.json │ │ │ ├── test_jsonp.js │ │ │ ├── test_proxy.json │ │ │ └── test_script.js │ │ └── testswarm.json │ │ ├── jquery-ui-touch-punch │ │ ├── README.md │ │ ├── jquery.ui.touch-punch.js │ │ └── jquery.ui.touch-punch.min.js │ │ ├── jquery-ui │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── jquery-ui-1.10.1.custom.css │ │ ├── jquery-ui-1.10.1.custom.min.css │ │ ├── jquery-ui-1.10.1.custom.min.js │ │ ├── jquery-ui-1.10.2.custom.min.js │ │ └── jquery-ui-1.9.2.custom.min.js │ │ ├── jquery-validation │ │ ├── README.md │ │ ├── changelog.txt │ │ ├── demo │ │ │ ├── ajaxSubmit-integration-demo.html │ │ │ ├── captcha │ │ │ │ ├── captcha.js │ │ │ │ ├── fonts │ │ │ │ │ └── Anorexia.ttf │ │ │ │ ├── image_req.php │ │ │ │ ├── images │ │ │ │ │ ├── button.png │ │ │ │ │ └── image.php │ │ │ │ ├── index.php │ │ │ │ ├── newsession.php │ │ │ │ ├── process.php │ │ │ │ ├── rand.php │ │ │ │ └── style.css │ │ │ ├── css │ │ │ │ ├── cmxform.css │ │ │ │ ├── cmxformTemplate.css │ │ │ │ ├── core.css │ │ │ │ ├── reset.css │ │ │ │ └── screen.css │ │ │ ├── custom-messages-data-demo.html │ │ │ ├── custom-methods-demo.html │ │ │ ├── dynamic-totals.html │ │ │ ├── errorcontainer-demo.html │ │ │ ├── file_input.html │ │ │ ├── images │ │ │ │ ├── bg.gif │ │ │ │ ├── checked.gif │ │ │ │ ├── cmxform-divider.gif │ │ │ │ ├── cmxform-fieldset.gif │ │ │ │ ├── loading.gif │ │ │ │ └── unchecked.gif │ │ │ ├── index.html │ │ │ ├── jquerymobile.html │ │ │ ├── login │ │ │ │ ├── images │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── header1.jpg │ │ │ │ │ ├── page.gif │ │ │ │ │ └── required_star.gif │ │ │ │ ├── index.html │ │ │ │ └── screen.css │ │ │ ├── marketo │ │ │ │ ├── images │ │ │ │ │ ├── backRequiredGray.gif │ │ │ │ │ ├── back_green-fade.gif │ │ │ │ │ ├── back_nav_blue.gif │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── button-submit.gif │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── help.png │ │ │ │ │ ├── left-nav-callout-long.png │ │ │ │ │ ├── login-sprite.gif │ │ │ │ │ ├── logo_marketo.gif │ │ │ │ │ ├── sf.png │ │ │ │ │ ├── step1-24.gif │ │ │ │ │ ├── step2-24.gif │ │ │ │ │ ├── step3-24.gif │ │ │ │ │ ├── tab-sprite.gif │ │ │ │ │ ├── tab_green.gif │ │ │ │ │ ├── time.png │ │ │ │ │ ├── toggle.gif │ │ │ │ │ └── warning.gif │ │ │ │ ├── index.html │ │ │ │ ├── jquery.maskedinput.js │ │ │ │ ├── mktSignup.js │ │ │ │ ├── step2.htm │ │ │ │ └── stylesheet.css │ │ │ ├── milk │ │ │ │ ├── bg.gif │ │ │ │ ├── index.html │ │ │ │ ├── left_white.png │ │ │ │ ├── milk.css │ │ │ │ ├── milk.png │ │ │ │ └── right_white.png │ │ │ ├── multipart │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jquery.maskedinput-1.0.js │ │ │ │ │ ├── ui.accordion.js │ │ │ │ │ └── ui.core.js │ │ │ │ └── style.css │ │ │ ├── radio-checkbox-select-demo.html │ │ │ ├── tabs │ │ │ │ └── index.html │ │ │ ├── themerollered.html │ │ │ └── tinymce │ │ │ │ ├── index.html │ │ │ │ ├── themes │ │ │ │ └── simple │ │ │ │ │ ├── editor_template.js │ │ │ │ │ ├── img │ │ │ │ │ └── icons.gif │ │ │ │ │ ├── langs │ │ │ │ │ └── en.js │ │ │ │ │ └── skins │ │ │ │ │ └── default │ │ │ │ │ └── ui.css │ │ │ │ └── tiny_mce.js │ │ ├── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ ├── lib │ │ │ ├── jquery-1.6.4.js │ │ │ ├── jquery-1.7.2.js │ │ │ ├── jquery-1.8.3.js │ │ │ ├── jquery-1.9.0.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.js │ │ │ └── jquery.mockjax.js │ │ ├── localization │ │ │ ├── messages_ar.js │ │ │ ├── messages_bg.js │ │ │ ├── messages_ca.js │ │ │ ├── messages_cs.js │ │ │ ├── messages_da.js │ │ │ ├── messages_de.js │ │ │ ├── messages_el.js │ │ │ ├── messages_es.js │ │ │ ├── messages_et.js │ │ │ ├── messages_eu.js │ │ │ ├── messages_fa.js │ │ │ ├── messages_fi.js │ │ │ ├── messages_fr.js │ │ │ ├── messages_he.js │ │ │ ├── messages_hr.js │ │ │ ├── messages_hu.js │ │ │ ├── messages_it.js │ │ │ ├── messages_ja.js │ │ │ ├── messages_ka.js │ │ │ ├── messages_kk.js │ │ │ ├── messages_ko.js │ │ │ ├── messages_lt.js │ │ │ ├── messages_lv.js │ │ │ ├── messages_my.js │ │ │ ├── messages_nl.js │ │ │ ├── messages_no.js │ │ │ ├── messages_pl.js │ │ │ ├── messages_pt_BR.js │ │ │ ├── messages_pt_PT.js │ │ │ ├── messages_ro.js │ │ │ ├── messages_ru.js │ │ │ ├── messages_si.js │ │ │ ├── messages_sk.js │ │ │ ├── messages_sl.js │ │ │ ├── messages_sr.js │ │ │ ├── messages_sv.js │ │ │ ├── messages_th.js │ │ │ ├── messages_tr.js │ │ │ ├── messages_uk.js │ │ │ ├── messages_vi.js │ │ │ ├── messages_zh.js │ │ │ ├── messages_zh_TW.js │ │ │ ├── methods_de.js │ │ │ ├── methods_nl.js │ │ │ └── methods_pt.js │ │ ├── package.json │ │ └── test │ │ │ ├── events.html │ │ │ ├── firebug │ │ │ ├── errorIcon.png │ │ │ ├── firebug.css │ │ │ ├── firebug.html │ │ │ ├── firebug.js │ │ │ ├── firebugx.js │ │ │ ├── infoIcon.png │ │ │ └── warningIcon.png │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── large.html │ │ │ ├── messages.js │ │ │ ├── methods.js │ │ │ ├── qunit │ │ │ ├── qunit.css │ │ │ └── qunit.js │ │ │ ├── rules.js │ │ │ ├── selects │ │ │ └── index.html │ │ │ ├── tabs.html │ │ │ └── test.js │ │ ├── jquery.maskedinput │ │ ├── .gitignore │ │ ├── Jakefile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── demo │ │ │ ├── datepicker.html │ │ │ └── index.html │ │ ├── dist │ │ │ ├── jquery.maskedinput.js │ │ │ └── jquery.maskedinput.min.js │ │ ├── lib │ │ │ ├── jquery-1.8.3.min.js │ │ │ └── jquery-1.9.0.min.js │ │ ├── maskedinput.jquery.json │ │ ├── plugin.json │ │ ├── spec │ │ │ ├── Backspace.Spec.js │ │ │ ├── Delete.spec.js │ │ │ ├── Escape.Spec.js │ │ │ ├── Focus.Spec.js │ │ │ ├── Paste.Spec.js │ │ │ ├── Raw.Spec.js │ │ │ ├── Setup.Spec.js │ │ │ ├── SpecRunner.html │ │ │ ├── Typing.Spec.js │ │ │ └── lib │ │ │ │ ├── jasmine-species │ │ │ │ ├── BSD.LICENSE │ │ │ │ ├── jasmine-be-calm.css │ │ │ │ ├── jasmine-grammar.js │ │ │ │ ├── jasmine-reporting.js │ │ │ │ └── version.json │ │ │ │ ├── jasmine │ │ │ │ ├── MIT.LICENSE │ │ │ │ ├── jasmine-html.js │ │ │ │ ├── jasmine.css │ │ │ │ └── jasmine.js │ │ │ │ ├── jquery.keymasher.js │ │ │ │ └── matchers.js │ │ ├── src │ │ │ └── jquery.maskedinput.js │ │ └── templates │ │ │ └── jquery.maskedinput.template │ │ ├── jquery.pulsate │ │ ├── jquery.pulsate.js │ │ └── jquery.pulsate.min.js │ │ ├── jquery.sparkline │ │ └── jquery.sparkline.js │ │ ├── ladda-bootstrap │ │ ├── .DS_Store │ │ ├── LICENSE │ │ ├── README.md │ │ ├── css │ │ │ ├── ladda-theme.scss │ │ │ ├── ladda.scss │ │ │ └── prism.css │ │ ├── dist │ │ │ ├── ladda-themeless.min.css │ │ │ ├── ladda.min.css │ │ │ ├── ladda.min.js │ │ │ └── spin.min.js │ │ ├── index.html │ │ ├── js │ │ │ ├── ladda.js │ │ │ ├── prism.js │ │ │ └── spin.js │ │ └── params.json │ │ ├── less │ │ └── less-1.5.0.min.js │ │ ├── moment │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── ender.js │ │ ├── lang │ │ │ ├── ar-ma.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── br.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cv.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── ml.js │ │ │ ├── mr.js │ │ │ ├── ms-my.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tzm-la.js │ │ │ ├── tzm.js │ │ │ ├── uk.js │ │ │ ├── vn.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ ├── min │ │ │ ├── langs.js │ │ │ ├── langs.min.js │ │ │ ├── moment+langs.js │ │ │ ├── moment+langs.min.js │ │ │ └── moment.min.js │ │ ├── moment.js │ │ ├── package.js │ │ ├── package.json │ │ ├── readme.md │ │ ├── tasks │ │ │ ├── component.js │ │ │ ├── embed_languages.js │ │ │ ├── history.js │ │ │ ├── size.js │ │ │ └── zones.js │ │ └── test │ │ │ ├── lang │ │ │ ├── ar-ma.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── br.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cv.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── ml.js │ │ │ ├── mr.js │ │ │ ├── ms-my.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tzm-la.js │ │ │ ├── tzm.js │ │ │ ├── uk.js │ │ │ ├── vn.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ │ └── moment │ │ │ ├── add_subtract.js │ │ │ ├── create.js │ │ │ ├── days_in_month.js │ │ │ ├── diff.js │ │ │ ├── duration.js │ │ │ ├── format.js │ │ │ ├── getters_setters.js │ │ │ ├── is_after.js │ │ │ ├── is_before.js │ │ │ ├── is_moment.js │ │ │ ├── is_same.js │ │ │ ├── is_valid.js │ │ │ ├── lang.js │ │ │ ├── leapyear.js │ │ │ ├── listers.js │ │ │ ├── min_max.js │ │ │ ├── mutable.js │ │ │ ├── normalizeUnits.js │ │ │ ├── preparse_postformat.js │ │ │ ├── sod_eod.js │ │ │ ├── string_prototype.js │ │ │ ├── utc.js │ │ │ ├── week_year.js │ │ │ ├── weekday.js │ │ │ ├── weeks.js │ │ │ └── zones.js │ │ ├── nestable │ │ ├── README.md │ │ ├── index.html │ │ └── jquery.nestable.js │ │ ├── perfect-scrollbar │ │ ├── .csslintrc │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── examples │ │ │ ├── azusa.jpg │ │ │ ├── options-default.html │ │ │ ├── options-minScrollbarLength.html │ │ │ ├── options-suppressScrollAxis.html │ │ │ ├── options-useBothWheelAxes.html │ │ │ ├── options-wheelPropagation.html │ │ │ ├── options-wheelSpeed.html │ │ │ └── text-content.html │ │ ├── min │ │ │ ├── perfect-scrollbar-0.4.6.min.css │ │ │ ├── perfect-scrollbar-0.4.6.min.js │ │ │ └── perfect-scrollbar-0.4.6.with-mousewheel.min.js │ │ ├── package.json │ │ ├── perfect-scrollbar.jquery.json │ │ └── src │ │ │ ├── jquery.mousewheel.js │ │ │ ├── perfect-scrollbar.css │ │ │ └── perfect-scrollbar.js │ │ ├── rainyday │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── demo.html │ │ └── rainyday.js │ │ ├── respond.min.js │ │ ├── select2 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── release.sh │ │ ├── select2-spinner.gif │ │ ├── select2.css │ │ ├── select2.jquery.json │ │ ├── select2.js │ │ ├── select2.min.js │ │ ├── select2.png │ │ ├── select2_locale_ar.js │ │ ├── select2_locale_bg.js │ │ ├── select2_locale_ca.js │ │ ├── select2_locale_cs.js │ │ ├── select2_locale_da.js │ │ ├── select2_locale_de.js │ │ ├── select2_locale_el.js │ │ ├── select2_locale_en.js.template │ │ ├── select2_locale_es.js │ │ ├── select2_locale_et.js │ │ ├── select2_locale_eu.js │ │ ├── select2_locale_fa.js │ │ ├── select2_locale_fi.js │ │ ├── select2_locale_fr.js │ │ ├── select2_locale_gl.js │ │ ├── select2_locale_he.js │ │ ├── select2_locale_hr.js │ │ ├── select2_locale_hu.js │ │ ├── select2_locale_id.js │ │ ├── select2_locale_is.js │ │ ├── select2_locale_it.js │ │ ├── select2_locale_ja.js │ │ ├── select2_locale_ko.js │ │ ├── select2_locale_lt.js │ │ ├── select2_locale_lv.js │ │ ├── select2_locale_mk.js │ │ ├── select2_locale_ms.js │ │ ├── select2_locale_nl.js │ │ ├── select2_locale_no.js │ │ ├── select2_locale_pl.js │ │ ├── select2_locale_pt-BR.js │ │ ├── select2_locale_pt-PT.js │ │ ├── select2_locale_ro.js │ │ ├── select2_locale_ru.js │ │ ├── select2_locale_sk.js │ │ ├── select2_locale_sv.js │ │ ├── select2_locale_th.js │ │ ├── select2_locale_tr.js │ │ ├── select2_locale_ua.js │ │ ├── select2_locale_vi.js │ │ ├── select2_locale_zh-CN.js │ │ ├── select2_locale_zh-TW.js │ │ └── select2x2.png │ │ ├── summernote │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── bs2.html │ │ ├── build │ │ │ ├── summernote-bootstrap.css │ │ │ ├── summernote.css │ │ │ └── summernote.min.js │ │ ├── elements.less │ │ ├── index.html │ │ ├── package.json │ │ ├── summernote.js │ │ ├── summernote.less │ │ └── test │ │ │ ├── dom.spec.html │ │ │ ├── dom.spec.js │ │ │ ├── list.spec.html │ │ │ ├── list.spec.js │ │ │ ├── qunit-1.11.0.css │ │ │ ├── qunit-1.11.0.js │ │ │ ├── range.spec.html │ │ │ └── range.spec.js │ │ ├── typeaheadjs │ │ ├── lib │ │ │ ├── typeahead.js │ │ │ └── typeahead.js-bootstrap.css │ │ └── typeaheadjs.js │ │ ├── wysihtml5 │ │ ├── bootstrap-wysihtml5-0.0.2 │ │ │ ├── bootstrap-wysihtml5-0.0.2.css │ │ │ ├── bootstrap-wysihtml5-0.0.2.js │ │ │ ├── bootstrap-wysihtml5-0.0.2.min.js │ │ │ ├── bootstrap-wysihtml5.js │ │ │ ├── wysihtml5-0.3.0.js │ │ │ ├── wysihtml5-0.3.0.min.js │ │ │ └── wysiwyg-color.css │ │ └── wysihtml5.js │ │ └── x-editable │ │ ├── css │ │ └── bootstrap-editable.css │ │ ├── demo-mock.js │ │ ├── demo.js │ │ ├── img │ │ ├── clear.png │ │ └── loading.gif │ │ └── js │ │ ├── bootstrap-editable.js │ │ └── bootstrap-editable.min.js ├── bootstrap │ ├── css │ │ ├── bootstrap-responsive.min.css │ │ └── bootstrap.min.css │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ └── js │ │ └── bootstrap.min.js ├── category.php ├── change-password.php ├── closed-complaint.php ├── college.php ├── complaint-details.php ├── css │ └── theme.css ├── department.php ├── edit-category.php ├── edit-state.php ├── edit-subcategory.php ├── get_subcat.php ├── images │ ├── bg.png │ ├── icons │ │ ├── css │ │ │ └── font-awesome.css │ │ └── font │ │ │ ├── fontawesome-webfont3294.eot │ │ │ ├── fontawesome-webfont3294.ttf │ │ │ ├── fontawesome-webfont3294.woff │ │ │ └── fontawesome-webfontd41d.eot │ ├── img.jpg │ ├── jquery-ui │ │ └── picker.png │ └── user.png ├── include │ ├── config.php │ ├── footer.php │ ├── header.php │ └── sidebar.php ├── index.php ├── inprocess-complaint.php ├── logout.php ├── manage-users.php ├── notprocess-complaint.php ├── pending-orders.php ├── scripts │ ├── common.js │ ├── datatables │ │ └── jquery.dataTables.js │ ├── flot │ │ ├── jquery.flot.js │ │ ├── jquery.flot.pie.js │ │ └── jquery.flot.resize.js │ ├── jquery-1.9.1.min.js │ └── jquery-ui-1.10.1.custom.min.js ├── state.php ├── subcategory.php ├── university.php ├── updatecomplaint.php ├── user-logs.php └── userprofile.php ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── gitattributes ├── img ├── c10.jpg └── c2.jpg ├── index.php ├── js ├── bootstrap.js ├── bootstrap.min.js └── jquery.js ├── media ├── admin-pswd.jpg ├── banner.png ├── c.png ├── category-management.jpg ├── cc.jpg ├── closed-status.jpg ├── cms-portal.jpg ├── comp-details.jpg ├── comp-history.jpg ├── comp-overview.jpg ├── comp-records.jpg ├── comp-status.jpg ├── edu-grievance.pptx ├── index.html ├── main-portal.jpg ├── manage-users.jpg ├── presentation │ ├── sgs_ppt_final.pdf │ └── sgs_sih_ppt_final.pptx ├── profile-info.jpg ├── publication.pdf ├── reset-pswd-popup.jpg ├── s.PNG ├── sm.js ├── subcategories.jpg ├── submit-confirmation.jpg ├── university-config.jpg ├── user-login.jpg ├── user-reg.jpg └── userlog-overview.jpg ├── sql └── cms.sql ├── university ├── add-category.php ├── assets │ ├── css │ │ ├── main-responsive.css │ │ ├── main.css │ │ ├── print.css │ │ ├── rtl-version.css │ │ ├── theme_black_and_white.css │ │ ├── theme_dark.css │ │ ├── theme_green.css │ │ ├── theme_light.css │ │ └── theme_navy.css │ ├── fonts │ │ ├── fonts │ │ │ ├── clip-font.eot │ │ │ ├── clip-font.svg │ │ │ ├── clip-font.ttf │ │ │ └── clip-font.woff │ │ ├── lte-ie7.js │ │ └── style.css │ ├── js │ │ ├── charts.js │ │ ├── form-calendar.js │ │ ├── form-dropzone.js │ │ ├── form-elements.js │ │ ├── form-image-cropping.js │ │ ├── form-validation.js │ │ ├── form-wizard.js │ │ ├── index.js │ │ ├── login.js │ │ ├── main.js │ │ ├── maps.js │ │ ├── pages-gallery.js │ │ ├── pages-user-profile.js │ │ ├── table-data.js │ │ ├── ui-animation.js │ │ ├── ui-buttons.js │ │ ├── ui-elements.js │ │ ├── ui-modals.js │ │ ├── ui-nestable.js │ │ ├── ui-sliders.js │ │ ├── ui-treeview.js │ │ ├── utility-coming-soon.js │ │ └── utility-error404.js │ ├── less │ │ └── styles.less │ └── plugins │ │ ├── DataTables │ │ ├── Readme.txt │ │ ├── component.json │ │ ├── docs │ │ │ ├── 34cdb56b2c.html │ │ │ ├── DataTable.defaults.columns.html │ │ │ ├── DataTable.defaults.html │ │ │ ├── DataTable.defaults.oLanguage.html │ │ │ ├── DataTable.defaults.oLanguage.oAria.html │ │ │ ├── DataTable.defaults.oLanguage.oPaginate.html │ │ │ ├── DataTable.defaults.oSearch.html │ │ │ ├── DataTable.ext.html │ │ │ ├── DataTable.html │ │ │ ├── DataTable.models.ext.html │ │ │ ├── DataTable.models.html │ │ │ ├── DataTable.models.oColumn.html │ │ │ ├── DataTable.models.oRow.html │ │ │ ├── DataTable.models.oSearch.html │ │ │ ├── DataTable.models.oSettings.html │ │ │ ├── DataTable.models.oSettings.oBrowser.html │ │ │ ├── DataTable.models.oSettings.oFeatures.html │ │ │ ├── DataTable.models.oSettings.oLanguage.html │ │ │ ├── DataTable.models.oSettings.oPreviousSearch.html │ │ │ ├── DataTable.models.oSettings.oScroll.html │ │ │ ├── index.html │ │ │ └── media │ │ │ │ ├── css │ │ │ │ ├── doc.css │ │ │ │ ├── shCore.css │ │ │ │ └── shThemeDataTables.css │ │ │ │ ├── images │ │ │ │ ├── arrow.jpg │ │ │ │ ├── arrow.png │ │ │ │ └── extended.png │ │ │ │ ├── js │ │ │ │ ├── doc.js │ │ │ │ ├── jquery.js │ │ │ │ ├── shBrushJScript.js │ │ │ │ └── shCore.js │ │ │ │ └── license │ │ │ │ └── Syntax Highlighter │ │ ├── examples │ │ │ ├── advanced_init │ │ │ │ ├── column_render.html │ │ │ │ ├── complex_header.html │ │ │ │ ├── defaults.html │ │ │ │ ├── dom_multiple_elements.html │ │ │ │ ├── dom_toolbar.html │ │ │ │ ├── dt_events.html │ │ │ │ ├── events_live.html │ │ │ │ ├── events_post_init.html │ │ │ │ ├── events_pre_init.html │ │ │ │ ├── footer_callback.html │ │ │ │ ├── highlight.html │ │ │ │ ├── html_sort.html │ │ │ │ ├── language_file.html │ │ │ │ ├── length_menu.html │ │ │ │ ├── localstorage.html │ │ │ │ ├── row_callback.html │ │ │ │ ├── row_grouping.html │ │ │ │ └── sorting_control.html │ │ │ ├── ajax │ │ │ │ ├── ajax.html │ │ │ │ ├── custom_data_property.html │ │ │ │ ├── deep.html │ │ │ │ ├── defer_render.html │ │ │ │ ├── null_data_source.html │ │ │ │ ├── objects.html │ │ │ │ ├── objects_subarrays.html │ │ │ │ └── sources │ │ │ │ │ ├── array_only.txt │ │ │ │ │ ├── arrays.txt │ │ │ │ │ ├── arrays_subobjects.txt │ │ │ │ │ ├── custom_prop.txt │ │ │ │ │ ├── deep.txt │ │ │ │ │ ├── objects.txt │ │ │ │ │ └── objects_subarrays.txt │ │ │ ├── api │ │ │ │ ├── add_row.html │ │ │ │ ├── api_in_init.html │ │ │ │ ├── counter_column.html │ │ │ │ ├── editable.html │ │ │ │ ├── form.html │ │ │ │ ├── highlight.html │ │ │ │ ├── multi_filter.html │ │ │ │ ├── multi_filter_select.html │ │ │ │ ├── regex.html │ │ │ │ ├── row_details.html │ │ │ │ ├── select_row.html │ │ │ │ ├── select_single_row.html │ │ │ │ ├── show_hide.html │ │ │ │ └── tabs_and_scrolling.html │ │ │ ├── basic_init │ │ │ │ ├── alt_pagination.html │ │ │ │ ├── base.html │ │ │ │ ├── base_themeroller.html │ │ │ │ ├── complex_header.html │ │ │ │ ├── dom.html │ │ │ │ ├── filter_only.html │ │ │ │ ├── flexible_width.html │ │ │ │ ├── hidden_columns.html │ │ │ │ ├── language.html │ │ │ │ ├── multi_col_sort.html │ │ │ │ ├── multiple_tables.html │ │ │ │ ├── scroll_x.html │ │ │ │ ├── scroll_xy.html │ │ │ │ ├── scroll_y.html │ │ │ │ ├── scroll_y_infinite.html │ │ │ │ ├── scroll_y_theme.html │ │ │ │ ├── state_save.html │ │ │ │ ├── table_sorting.html │ │ │ │ ├── themes.html │ │ │ │ └── zero_config.html │ │ │ ├── data_sources │ │ │ │ ├── ajax.html │ │ │ │ ├── dom.html │ │ │ │ ├── js_array.html │ │ │ │ └── server_side.html │ │ │ ├── examples_support │ │ │ │ ├── data.sql │ │ │ │ ├── de_DE.txt │ │ │ │ ├── details_close.png │ │ │ │ ├── details_open.png │ │ │ │ ├── editable_ajax.php │ │ │ │ ├── index.html │ │ │ │ ├── infiniteScroll.php │ │ │ │ ├── jquery-ui-tabs.js │ │ │ │ ├── jquery.jeditable.js │ │ │ │ ├── jquery.tooltip.css │ │ │ │ ├── jquery.tooltip.js │ │ │ │ ├── syntax │ │ │ │ │ ├── css │ │ │ │ │ │ └── shCore.css │ │ │ │ │ ├── images │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ └── extended.png │ │ │ │ │ ├── js │ │ │ │ │ │ └── shCore.js │ │ │ │ │ └── license │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ └── themes │ │ │ │ │ ├── smoothness │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ └── jquery-ui-1.8.4.custom.css │ │ │ │ │ └── ui-lightness │ │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ └── jquery-ui-1.8.4.custom.css │ │ │ ├── index.html │ │ │ ├── plug-ins │ │ │ │ ├── dom_sort.html │ │ │ │ ├── html_sort.html │ │ │ │ ├── paging_plugin.html │ │ │ │ ├── plugin_api.html │ │ │ │ ├── range_filtering.html │ │ │ │ ├── sorting_plugin.html │ │ │ │ └── sorting_sType.html │ │ │ └── server_side │ │ │ │ ├── custom_vars.html │ │ │ │ ├── defer_loading.html │ │ │ │ ├── editable.html │ │ │ │ ├── ids.html │ │ │ │ ├── jsonp.html │ │ │ │ ├── object_data.html │ │ │ │ ├── pipeline.html │ │ │ │ ├── post.html │ │ │ │ ├── row_details.html │ │ │ │ ├── scripts │ │ │ │ ├── custom_data_property.php │ │ │ │ ├── details_col.php │ │ │ │ ├── filter_col.php │ │ │ │ ├── id.php │ │ │ │ ├── id_jsonp.php │ │ │ │ ├── jsonp.php │ │ │ │ ├── objects.php │ │ │ │ ├── objects_jsonp.php │ │ │ │ ├── post.php │ │ │ │ └── server_processing.php │ │ │ │ ├── select_rows.html │ │ │ │ └── server_side.html │ │ ├── extras │ │ │ ├── AutoFill │ │ │ │ ├── callbacks.html │ │ │ │ ├── columns.html │ │ │ │ ├── index.html │ │ │ │ ├── inputs.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ └── AutoFill.css │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── 02ff627f40.html │ │ │ │ │ │ ├── 36456bf45f.html │ │ │ │ │ │ ├── 47cac4f141.html │ │ │ │ │ │ ├── 5a72546831.html │ │ │ │ │ │ ├── 8ee4007a12.html │ │ │ │ │ │ ├── AutoFill.html │ │ │ │ │ │ ├── a69b02bcf2.html │ │ │ │ │ │ ├── b44bd4821a.html │ │ │ │ │ │ ├── c6945fdb4a.html │ │ │ │ │ │ ├── global.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── filler.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── AutoFill.js │ │ │ │ │ │ ├── AutoFill.min.js │ │ │ │ │ │ └── AutoFill.min.js.gz │ │ │ │ └── scrolling.html │ │ │ ├── ColReorder │ │ │ │ ├── alt_insert.html │ │ │ │ ├── col_filter.html │ │ │ │ ├── colvis.html │ │ │ │ ├── fixedcolumns.html │ │ │ │ ├── fixedheader.html │ │ │ │ ├── index.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ └── ColReorder.css │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── 46848f6f3b.html │ │ │ │ │ │ ├── 4f1246032c.html │ │ │ │ │ │ ├── ColReorder.html │ │ │ │ │ │ ├── a69b02bcf2.html │ │ │ │ │ │ ├── global.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── insert.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── ColReorder.js │ │ │ │ │ │ ├── ColReorder.min.js │ │ │ │ │ │ └── ColReorder.min.js.gz │ │ │ │ ├── predefined.html │ │ │ │ ├── reset.html │ │ │ │ ├── scrolling.html │ │ │ │ ├── server_side.html │ │ │ │ ├── state_save.html │ │ │ │ └── theme.html │ │ │ ├── ColVis │ │ │ │ ├── exclude_columns.html │ │ │ │ ├── index.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ ├── ColVis.css │ │ │ │ │ │ └── ColVisAlt.css │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── ColVis.html │ │ │ │ │ │ ├── a69b02bcf2.html │ │ │ │ │ │ ├── ccb5a49865.html │ │ │ │ │ │ ├── global.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── button.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── ColVis.js │ │ │ │ │ │ ├── ColVis.min.js │ │ │ │ │ │ └── ColVis.min.js.gz │ │ │ │ ├── mouseover.html │ │ │ │ ├── style.html │ │ │ │ ├── text.html │ │ │ │ ├── theme.html │ │ │ │ ├── title_callback.html │ │ │ │ ├── two_tables.html │ │ │ │ └── two_tables_identical.html │ │ │ ├── FixedColumns │ │ │ │ ├── col_filter.html │ │ │ │ ├── css_size.html │ │ │ │ ├── docs │ │ │ │ │ ├── 070023b890.html │ │ │ │ │ ├── 526f872207.html │ │ │ │ │ ├── 73098af57c.html │ │ │ │ │ ├── 889588ec06.html │ │ │ │ │ ├── 91bce7c4ad.html │ │ │ │ │ ├── FixedColumns.defaults.html │ │ │ │ │ ├── FixedColumns.html │ │ │ │ │ ├── a6bd52f587.html │ │ │ │ │ ├── d3890ba7c4.html │ │ │ │ │ ├── e20106c59a.html │ │ │ │ │ ├── global.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── media │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ └── license │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ ├── index.html │ │ │ │ ├── index_column.html │ │ │ │ ├── left_right_columns.html │ │ │ │ ├── media │ │ │ │ │ └── js │ │ │ │ │ │ ├── FixedColumns.js │ │ │ │ │ │ ├── FixedColumns.min.js │ │ │ │ │ │ └── FixedColumns.min.js.gz │ │ │ │ ├── right_column.html │ │ │ │ ├── row_grouping.html │ │ │ │ ├── row_grouping_height.html │ │ │ │ ├── rowspan.html │ │ │ │ ├── scale_fixed.html │ │ │ │ ├── scale_relative.html │ │ │ │ ├── server-side-processing.html │ │ │ │ ├── themed.html │ │ │ │ ├── two_columns.html │ │ │ │ └── x_y_scrolling.html │ │ │ ├── FixedHeader │ │ │ │ ├── html_table.html │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── FixedHeader.js │ │ │ │ │ ├── FixedHeader.min.js │ │ │ │ │ └── FixedHeader.min.js.gz │ │ │ │ ├── top_bottom_left_right.html │ │ │ │ ├── top_left.html │ │ │ │ ├── two_tables.html │ │ │ │ └── zIndexes.html │ │ │ ├── KeyTable │ │ │ │ ├── datatable.html │ │ │ │ ├── datatable_scrolling.html │ │ │ │ ├── editing.html │ │ │ │ ├── form.html │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ │ ├── KeyTable.js │ │ │ │ │ ├── KeyTable.min.js │ │ │ │ │ └── KeyTable.min.js.gz │ │ │ ├── Scroller │ │ │ │ ├── api_scrolling.html │ │ │ │ ├── index.html │ │ │ │ ├── large_js_source.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ └── dataTables.scroller.css │ │ │ │ │ ├── data │ │ │ │ │ │ ├── 2500.txt │ │ │ │ │ │ └── server_processing.php │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── Scroller.html │ │ │ │ │ │ ├── Scroller.oDefaults.html │ │ │ │ │ │ ├── baed189d4a.html │ │ │ │ │ │ ├── c6053fac6b.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── loading-background.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ │ │ ├── dataTables.scroller.min.js │ │ │ │ │ │ └── dataTables.scroller.min.js.gz │ │ │ │ ├── server-side_processing.html │ │ │ │ └── state_saving.html │ │ │ └── TableTools │ │ │ │ ├── alt_init.html │ │ │ │ ├── alter_buttons.html │ │ │ │ ├── bootstrap.html │ │ │ │ ├── button_text.html │ │ │ │ ├── collection.html │ │ │ │ ├── defaults.html │ │ │ │ ├── index.html │ │ │ │ ├── media │ │ │ │ ├── as3 │ │ │ │ │ ├── ZeroClipboard.as │ │ │ │ │ ├── ZeroClipboardPdf.as │ │ │ │ │ └── lib │ │ │ │ │ │ └── AlivePDF.swc │ │ │ │ ├── css │ │ │ │ │ ├── TableTools.css │ │ │ │ │ └── TableTools_JUI.css │ │ │ │ ├── images │ │ │ │ │ ├── background.png │ │ │ │ │ ├── collection.png │ │ │ │ │ ├── collection_hover.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── copy_hover.png │ │ │ │ │ ├── csv.png │ │ │ │ │ ├── csv_hover.png │ │ │ │ │ ├── pdf.png │ │ │ │ │ ├── pdf_hover.png │ │ │ │ │ ├── print.png │ │ │ │ │ ├── print_hover.png │ │ │ │ │ ├── psd │ │ │ │ │ │ ├── collection.psd │ │ │ │ │ │ ├── copy document.psd │ │ │ │ │ │ ├── file_types.psd │ │ │ │ │ │ └── printer.psd │ │ │ │ │ ├── xls.png │ │ │ │ │ └── xls_hover.png │ │ │ │ ├── js │ │ │ │ │ ├── TableTools.js │ │ │ │ │ ├── TableTools.min.js │ │ │ │ │ ├── TableTools.min.js.gz │ │ │ │ │ └── ZeroClipboard.js │ │ │ │ └── swf │ │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ │ └── copy_csv_xls_pdf.swf │ │ │ │ ├── multi_instance.html │ │ │ │ ├── multiple_tables.html │ │ │ │ ├── pdf_message.html │ │ │ │ ├── plug-in.html │ │ │ │ ├── select_multi.html │ │ │ │ ├── select_single.html │ │ │ │ ├── swf_path.html │ │ │ │ ├── tabs.html │ │ │ │ └── theme.html │ │ ├── license-bsd.txt │ │ ├── license-gpl2.txt │ │ ├── media │ │ │ ├── css │ │ │ │ ├── DT_bootstrap.css │ │ │ │ ├── demo_page.css │ │ │ │ ├── demo_table.css │ │ │ │ ├── demo_table_jui.css │ │ │ │ ├── images │ │ │ │ │ ├── Sorting icons.psd │ │ │ │ │ ├── back_disabled.png │ │ │ │ │ ├── back_enabled.png │ │ │ │ │ ├── back_enabled_hover.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── forward_disabled.png │ │ │ │ │ ├── forward_enabled.png │ │ │ │ │ ├── forward_enabled_hover.png │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ ├── sort_both.png │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ ├── jquery.dataTables.css │ │ │ │ └── jquery.dataTables_themeroller.css │ │ │ ├── js │ │ │ │ ├── DT_bootstrap.js │ │ │ │ ├── jquery.dataTables.editable.js │ │ │ │ ├── jquery.dataTables.js │ │ │ │ ├── jquery.dataTables.min.js │ │ │ │ └── jquery.js │ │ │ ├── src │ │ │ │ ├── DataTables.js │ │ │ │ ├── api │ │ │ │ │ ├── api.internal.js │ │ │ │ │ ├── api.methods.js │ │ │ │ │ └── api.static.js │ │ │ │ ├── core │ │ │ │ │ ├── core.ajax.js │ │ │ │ │ ├── core.columns.js │ │ │ │ │ ├── core.constructor.js │ │ │ │ │ ├── core.data.js │ │ │ │ │ ├── core.draw.js │ │ │ │ │ ├── core.filter.js │ │ │ │ │ ├── core.info.js │ │ │ │ │ ├── core.init.js │ │ │ │ │ ├── core.length.js │ │ │ │ │ ├── core.page.js │ │ │ │ │ ├── core.processing.js │ │ │ │ │ ├── core.scrolling.js │ │ │ │ │ ├── core.sizing.js │ │ │ │ │ ├── core.sort.js │ │ │ │ │ ├── core.state.js │ │ │ │ │ └── core.support.js │ │ │ │ ├── ext │ │ │ │ │ ├── ext.classes.js │ │ │ │ │ ├── ext.paging.js │ │ │ │ │ ├── ext.sorting.js │ │ │ │ │ └── ext.types.js │ │ │ │ └── model │ │ │ │ │ ├── model.column.js │ │ │ │ │ ├── model.defaults.columns.js │ │ │ │ │ ├── model.defaults.js │ │ │ │ │ ├── model.ext.js │ │ │ │ │ ├── model.row.js │ │ │ │ │ ├── model.search.js │ │ │ │ │ └── model.settings.js │ │ │ └── unit_testing │ │ │ │ ├── controller.js │ │ │ │ ├── controller.php │ │ │ │ ├── index.html │ │ │ │ ├── performance │ │ │ │ ├── draw.html │ │ │ │ ├── large.php │ │ │ │ ├── page.html │ │ │ │ └── sort.html │ │ │ │ ├── templates │ │ │ │ ├── -complex_header.php │ │ │ │ ├── 2512.php │ │ │ │ ├── 6776.php │ │ │ │ ├── complex_header_2.php │ │ │ │ ├── deferred_table.php │ │ │ │ ├── dom_data.php │ │ │ │ ├── dom_data_th.php │ │ │ │ ├── dom_data_two_headers.php │ │ │ │ ├── dymanic_table.php │ │ │ │ ├── empty_table.php │ │ │ │ ├── html_table.php │ │ │ │ ├── js_data.php │ │ │ │ ├── js_data_mixed_types.php │ │ │ │ └── two_tables.php │ │ │ │ ├── tests │ │ │ │ └── 1_dom │ │ │ │ │ └── _zero_config.js │ │ │ │ ├── tests_onhold │ │ │ │ ├── 1_dom │ │ │ │ │ ├── -complex_header.js │ │ │ │ │ ├── -iDraw.js │ │ │ │ │ ├── 2512.js │ │ │ │ │ ├── 2530-2.js │ │ │ │ │ ├── 2530.js │ │ │ │ │ ├── 2569.js │ │ │ │ │ ├── 2600.js │ │ │ │ │ ├── 2608.js │ │ │ │ │ ├── 2635.js │ │ │ │ │ ├── 2746-stable-sort.js │ │ │ │ │ ├── 2799.js │ │ │ │ │ ├── 2840-restore-table-width.js │ │ │ │ │ ├── 2914-state-save-sort.js │ │ │ │ │ ├── 5396-fnUpdate-arrays-mData.js │ │ │ │ │ ├── 5396-fnUpdate-arrays.js │ │ │ │ │ ├── 5508-xscroll-zero-content.js │ │ │ │ │ ├── 6776-scrolling-table-grows.js │ │ │ │ │ ├── _getDataFunctions.js │ │ │ │ │ ├── _setDataFunctions.js │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.bVisible2.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfiniteScroll.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bJQueryUI.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortCellsTop.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnCookieCallback.js │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ ├── fnDeleteRow.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnFilter.js │ │ │ │ │ ├── fnFooterCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInfoCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── fnSetColumnVis.js │ │ │ │ │ ├── fnSetColumnVis2.js │ │ │ │ │ ├── html-autodetect-sort.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ ├── sPaginationType.js │ │ │ │ │ ├── sScrollXY.js │ │ │ │ │ └── th_in_body.js │ │ │ │ ├── 2_js │ │ │ │ │ ├── 39-nested-null.js │ │ │ │ │ ├── 6872-default-content-missing-props.js │ │ │ │ │ ├── 8549--string-sorting-nonstrings.js │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnFooterCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── js_data_mixed_types.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ ├── 3_ajax │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── fnServerData.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sLoadingRecords.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxDataProp.js │ │ │ │ │ ├── sAjaxDataProp2.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ ├── 4_server-side │ │ │ │ │ ├── -iDraw.js │ │ │ │ │ ├── 2440.js │ │ │ │ │ ├── 2569.js │ │ │ │ │ ├── 2600.js │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfiniteScroll.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── iDeferLoading.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxDataProp.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ ├── 5_ajax_objects │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── _zero_config_arrays_subobjects.js │ │ │ │ │ ├── _zero_config_deep.js │ │ │ │ │ ├── _zero_config_mDataProp.js │ │ │ │ │ ├── _zero_config_null_source.js │ │ │ │ │ ├── _zero_config_objects.js │ │ │ │ │ ├── _zero_config_objects_subarrays.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── fnServerData.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ └── 6_delayed_rendering │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── fnServerData.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxDataProp.js │ │ │ │ │ ├── sAjaxDataProp2.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ └── unit_test.js │ │ ├── package.json │ │ └── scripts │ │ │ ├── jshint.config │ │ │ ├── make.sh │ │ │ └── unit_tests.sh │ │ ├── Jcrop │ │ ├── MIT-LICENSE.txt │ │ ├── README.md │ │ ├── css │ │ │ ├── Jcrop.gif │ │ │ ├── jquery.Jcrop.css │ │ │ └── jquery.Jcrop.min.css │ │ ├── demos │ │ │ ├── crop.php │ │ │ ├── demo_files │ │ │ │ ├── demos.css │ │ │ │ ├── main.css │ │ │ │ ├── pool.jpg │ │ │ │ ├── sago.jpg │ │ │ │ ├── sagomod.jpg │ │ │ │ └── sagomod.png │ │ │ ├── non-image.html │ │ │ ├── styling.html │ │ │ ├── tutorial1.html │ │ │ ├── tutorial2.html │ │ │ ├── tutorial3.html │ │ │ ├── tutorial4.html │ │ │ └── tutorial5.html │ │ ├── index.html │ │ └── js │ │ │ ├── jquery.Jcrop.js │ │ │ ├── jquery.Jcrop.min.js │ │ │ ├── jquery.color.js │ │ │ └── jquery.min.js │ │ ├── autosize │ │ ├── autosize.jquery.json │ │ ├── bower.json │ │ ├── demo.html │ │ ├── jquery.autosize.js │ │ ├── jquery.autosize.min.js │ │ ├── package.json │ │ └── readme.md │ │ ├── blockUI │ │ └── jquery.blockUI.js │ │ ├── bootstrap-colorpalette │ │ ├── README.md │ │ ├── css │ │ │ ├── bootstrap-colorpalette.css │ │ │ └── example.css │ │ ├── example.html │ │ └── js │ │ │ └── bootstrap-colorpalette.js │ │ ├── bootstrap-colorpicker │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── css │ │ │ └── bootstrap-colorpicker.css │ │ ├── img │ │ │ └── bootstrap-colorpicker │ │ │ │ ├── alpha.png │ │ │ │ ├── hue.png │ │ │ │ └── saturation.png │ │ ├── index.html │ │ ├── js │ │ │ ├── bootstrap-colorpicker.js │ │ │ └── commits.js │ │ └── less │ │ │ └── bootstrap-colorpicker.less │ │ ├── bootstrap-datepicker │ │ ├── .gitignore │ │ ├── .hgignore │ │ ├── .hgtags │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ │ ├── build.less │ │ │ └── build_standalone.less │ │ ├── composer.json │ │ ├── css │ │ │ └── datepicker.css │ │ ├── docs │ │ │ ├── Makefile │ │ │ ├── _static │ │ │ │ └── demo_head.png │ │ │ ├── conf.py │ │ │ ├── events.rst │ │ │ ├── i18n.rst │ │ │ ├── index.rst │ │ │ ├── keyboard.rst │ │ │ ├── make.bat │ │ │ ├── markup.rst │ │ │ ├── methods.rst │ │ │ └── options.rst │ │ ├── js │ │ │ ├── bootstrap-datepicker.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datepicker.ar.js │ │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ │ ├── bootstrap-datepicker.cy.js │ │ │ │ ├── bootstrap-datepicker.da.js │ │ │ │ ├── bootstrap-datepicker.de.js │ │ │ │ ├── bootstrap-datepicker.el.js │ │ │ │ ├── bootstrap-datepicker.es.js │ │ │ │ ├── bootstrap-datepicker.et.js │ │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ │ ├── bootstrap-datepicker.he.js │ │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ │ ├── bootstrap-datepicker.id.js │ │ │ │ ├── bootstrap-datepicker.is.js │ │ │ │ ├── bootstrap-datepicker.it.js │ │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ │ ├── bootstrap-datepicker.ka.js │ │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ │ ├── bootstrap-datepicker.mk.js │ │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ │ ├── bootstrap-datepicker.nl-BE.js │ │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ │ ├── bootstrap-datepicker.no.js │ │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ │ ├── bootstrap-datepicker.sq.js │ │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ │ ├── bootstrap-datepicker.th.js │ │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ │ ├── bootstrap-datepicker.ua.js │ │ │ │ ├── bootstrap-datepicker.uk.js │ │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ ├── less │ │ │ └── datepicker.less │ │ └── tests │ │ │ ├── README.md │ │ │ ├── _coverage.html │ │ │ ├── assets │ │ │ ├── coverage.js │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── mock.js │ │ │ ├── qunit-logging.js │ │ │ ├── qunit.css │ │ │ ├── qunit.js │ │ │ └── utils.js │ │ │ ├── run-qunit.js │ │ │ ├── suites │ │ │ ├── calendar-weeks.js │ │ │ ├── component.js │ │ │ ├── data-api.js │ │ │ ├── events.js │ │ │ ├── formats.js │ │ │ ├── inline.js │ │ │ ├── keyboard_navigation │ │ │ │ ├── 2011.js │ │ │ │ ├── 2012.js │ │ │ │ └── all.js │ │ │ ├── methods.js │ │ │ ├── mouse_navigation │ │ │ │ ├── 2011.js │ │ │ │ ├── 2012.js │ │ │ │ └── all.js │ │ │ ├── noconflict.js │ │ │ └── options.js │ │ │ └── tests.html │ │ ├── bootstrap-daterangepicker │ │ ├── README.md │ │ ├── daterangepicker-bs2.css │ │ ├── daterangepicker-bs3.css │ │ ├── daterangepicker.js │ │ ├── examples.html │ │ ├── moment.js │ │ └── moment.min.js │ │ ├── bootstrap-datetimepicker │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ │ ├── build.less │ │ │ └── build_standalone.less │ │ ├── css │ │ │ └── datetimepicker.css │ │ ├── js │ │ │ ├── bootstrap-datetimepicker.js │ │ │ ├── bootstrap-datetimepicker.min.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datetimepicker.bg.js │ │ │ │ ├── bootstrap-datetimepicker.ca.js │ │ │ │ ├── bootstrap-datetimepicker.cs.js │ │ │ │ ├── bootstrap-datetimepicker.da.js │ │ │ │ ├── bootstrap-datetimepicker.de.js │ │ │ │ ├── bootstrap-datetimepicker.el.js │ │ │ │ ├── bootstrap-datetimepicker.es.js │ │ │ │ ├── bootstrap-datetimepicker.fi.js │ │ │ │ ├── bootstrap-datetimepicker.fr.js │ │ │ │ ├── bootstrap-datetimepicker.he.js │ │ │ │ ├── bootstrap-datetimepicker.hr.js │ │ │ │ ├── bootstrap-datetimepicker.hu.js │ │ │ │ ├── bootstrap-datetimepicker.id.js │ │ │ │ ├── bootstrap-datetimepicker.is.js │ │ │ │ ├── bootstrap-datetimepicker.it.js │ │ │ │ ├── bootstrap-datetimepicker.ja.js │ │ │ │ ├── bootstrap-datetimepicker.kr.js │ │ │ │ ├── bootstrap-datetimepicker.lt.js │ │ │ │ ├── bootstrap-datetimepicker.lv.js │ │ │ │ ├── bootstrap-datetimepicker.ms.js │ │ │ │ ├── bootstrap-datetimepicker.nb.js │ │ │ │ ├── bootstrap-datetimepicker.nl.js │ │ │ │ ├── bootstrap-datetimepicker.pl.js │ │ │ │ ├── bootstrap-datetimepicker.pt-BR.js │ │ │ │ ├── bootstrap-datetimepicker.pt.js │ │ │ │ ├── bootstrap-datetimepicker.ro.js │ │ │ │ ├── bootstrap-datetimepicker.rs-latin.js │ │ │ │ ├── bootstrap-datetimepicker.rs.js │ │ │ │ ├── bootstrap-datetimepicker.ru.js │ │ │ │ ├── bootstrap-datetimepicker.sk.js │ │ │ │ ├── bootstrap-datetimepicker.sl.js │ │ │ │ ├── bootstrap-datetimepicker.sv.js │ │ │ │ ├── bootstrap-datetimepicker.sw.js │ │ │ │ ├── bootstrap-datetimepicker.th.js │ │ │ │ ├── bootstrap-datetimepicker.tr.js │ │ │ │ ├── bootstrap-datetimepicker.ua.js │ │ │ │ ├── bootstrap-datetimepicker.uk.js │ │ │ │ ├── bootstrap-datetimepicker.zh-CN.js │ │ │ │ └── bootstrap-datetimepicker.zh-TW.js │ │ ├── less │ │ │ └── datetimepicker.less │ │ ├── sample │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── img │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ └── bootstrap.min.js │ │ │ ├── index.html │ │ │ └── jquery │ │ │ │ └── jquery-1.8.3.min.js │ │ ├── screenshot │ │ │ ├── standard_day.png │ │ │ ├── standard_day_meridian.png │ │ │ ├── standard_decade.png │ │ │ ├── standard_full.png │ │ │ ├── standard_hour.png │ │ │ ├── standard_hour_meridian.png │ │ │ ├── standard_month.png │ │ │ └── standard_year.png │ │ └── tests │ │ │ ├── README.md │ │ │ ├── _coverage.html │ │ │ ├── assets │ │ │ ├── coverage.js │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── mock.js │ │ │ ├── qunit-logging.js │ │ │ ├── qunit.css │ │ │ ├── qunit.js │ │ │ └── utils.js │ │ │ ├── run-qunit.js │ │ │ ├── suites │ │ │ ├── component.js │ │ │ ├── events.js │ │ │ ├── formats.js │ │ │ ├── inline.js │ │ │ ├── keyboard_navigation │ │ │ │ ├── 2011.js │ │ │ │ ├── 2012.js │ │ │ │ └── all.js │ │ │ ├── mouse_navigation │ │ │ │ ├── 2011.js │ │ │ │ ├── 2012.js │ │ │ │ └── all.js │ │ │ └── options.js │ │ │ ├── tests.html │ │ │ └── tests.min.html │ │ ├── bootstrap-fileupload │ │ ├── bootstrap-fileupload.css │ │ ├── bootstrap-fileupload.js │ │ ├── bootstrap-fileupload.min.css │ │ └── bootstrap-fileupload.min.js │ │ ├── bootstrap-hover-dropdown │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap-hover-dropdown.js │ │ ├── bootstrap-hover-dropdown.min.js │ │ ├── bower.json │ │ └── demo.html │ │ ├── bootstrap-modal │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bs3.html │ │ ├── component.json │ │ ├── composer.json │ │ ├── css │ │ │ ├── bootstrap-modal-bs3patch.css │ │ │ └── bootstrap-modal.css │ │ ├── img │ │ │ └── ajax-loader.gif │ │ ├── index.html │ │ ├── js │ │ │ ├── bootstrap-modal.js │ │ │ └── bootstrap-modalmanager.js │ │ ├── modal_ajax_test.html │ │ └── params.json │ │ ├── bootstrap-paginator │ │ ├── .gitignore │ │ ├── CHANGELOG │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap-paginator.jquery.json │ │ ├── build.sh │ │ ├── build │ │ │ └── bootstrap-paginator.min.js │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrapv3.css │ │ │ ├── bootstrapv3.min.css │ │ │ ├── documentation.css │ │ │ ├── highlight.js │ │ │ │ ├── arta.css │ │ │ │ ├── ascetic.css │ │ │ │ ├── brown_paper.css │ │ │ │ ├── brown_papersq.png │ │ │ │ ├── dark.css │ │ │ │ ├── default.css │ │ │ │ ├── far.css │ │ │ │ ├── github.css │ │ │ │ ├── googlecode.css │ │ │ │ ├── idea.css │ │ │ │ ├── ir_black.css │ │ │ │ ├── magula.css │ │ │ │ ├── monokai.css │ │ │ │ ├── pojoaque.css │ │ │ │ ├── pojoaque.jpg │ │ │ │ ├── rainbow.css │ │ │ │ ├── school_book.css │ │ │ │ ├── school_book.png │ │ │ │ ├── solarized_dark.css │ │ │ │ ├── solarized_light.css │ │ │ │ ├── sunburst.css │ │ │ │ ├── tomorrow-night-blue.css │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ ├── tomorrow-night.css │ │ │ │ ├── tomorrow.css │ │ │ │ ├── vs.css │ │ │ │ ├── xcode.css │ │ │ │ └── zenburn.css │ │ │ └── qunit-1.11.0.css │ │ ├── documentation │ │ │ └── index.html │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ ├── glyphicons-halflings.png │ │ │ └── illustration.png │ │ ├── lib │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── bootstrapv3.js │ │ │ ├── highlight.pack.js │ │ │ ├── jquery-1.9.1.min.js │ │ │ ├── jquery.history.js │ │ │ └── qunit-1.11.0.js │ │ ├── src │ │ │ └── bootstrap-paginator.js │ │ └── test │ │ │ ├── test.html │ │ │ └── testv3.html │ │ ├── bootstrap-social-buttons │ │ ├── LICENSE │ │ ├── README.md │ │ ├── social-buttons-3.css │ │ ├── social-buttons-3.less │ │ ├── social-buttons.css │ │ └── social-buttons.less │ │ ├── bootstrap-switch │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── examples │ │ │ └── index.html │ │ └── static │ │ │ ├── js │ │ │ ├── bootstrap-switch.js │ │ │ └── bootstrap-switch.min.js │ │ │ ├── less │ │ │ ├── bootstrap-switch.less │ │ │ └── deps │ │ │ │ ├── mixins.less │ │ │ │ └── variables.less │ │ │ └── stylesheets │ │ │ ├── bootstrap-switch.css │ │ │ └── flat-ui-fonts.css │ │ ├── bootstrap-timepicker │ │ ├── .bowerrc │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── component.json │ │ ├── composer.json │ │ ├── css │ │ │ ├── bootstrap-timepicker.css │ │ │ └── bootstrap-timepicker.min.css │ │ ├── js │ │ │ ├── bootstrap-timepicker.js │ │ │ └── bootstrap-timepicker.min.js │ │ ├── less │ │ │ └── timepicker.less │ │ ├── package.json │ │ └── spec │ │ │ └── js │ │ │ ├── KeyboardEventsSpec.js │ │ │ ├── MouseEventsSpec.js │ │ │ ├── TimepickerSpec.js │ │ │ ├── fixtures │ │ │ └── timepicker.html │ │ │ └── helpers │ │ │ ├── SpecHelper.js │ │ │ └── jasmine-jquery.js │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ ├── ckeditor │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── fakeobjects │ │ │ │ └── images │ │ │ │ │ └── spacer.gif │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ └── icon.png │ │ │ │ │ └── icon.png │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── scayt │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ │ │ └── specialchar.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmp.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ ├── samples │ │ │ ├── ajax.html │ │ │ ├── api.html │ │ │ ├── appendto.html │ │ │ ├── assets │ │ │ │ ├── inlineall │ │ │ │ │ └── logo.png │ │ │ │ ├── outputxhtml │ │ │ │ │ └── outputxhtml.css │ │ │ │ ├── posteddata.php │ │ │ │ ├── sample.css │ │ │ │ ├── sample.jpg │ │ │ │ └── uilanguages │ │ │ │ │ └── languages.js │ │ │ ├── datafiltering.html │ │ │ ├── divreplace.html │ │ │ ├── index.html │ │ │ ├── inlineall.html │ │ │ ├── inlinebycode.html │ │ │ ├── inlinetextarea.html │ │ │ ├── jquery.html │ │ │ ├── plugins │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── htmlwriter │ │ │ │ │ ├── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ └── outputhtml.html │ │ │ │ ├── magicline │ │ │ │ │ └── magicline.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ └── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ ├── readonly.html │ │ │ ├── replacebyclass.html │ │ │ ├── replacebycode.html │ │ │ ├── sample.css │ │ │ ├── sample.js │ │ │ ├── sample_posteddata.php │ │ │ ├── tabindex.html │ │ │ ├── uicolor.html │ │ │ ├── uilanguages.html │ │ │ └── xhtmlstyle.html │ │ ├── skins │ │ │ └── moono │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── dialog_opera.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ │ └── readme.md │ │ └── styles.js │ │ ├── colorbox │ │ ├── README.md │ │ ├── bower.json │ │ ├── colorbox.ai │ │ ├── colorbox.jquery.json │ │ ├── content │ │ │ ├── ajax.html │ │ │ ├── daisy.jpg │ │ │ ├── daisy@2x.jpg │ │ │ ├── homer.jpg │ │ │ ├── marylou.jpg │ │ │ ├── ohoopee1.jpg │ │ │ ├── ohoopee2.jpg │ │ │ └── ohoopee3.jpg │ │ ├── example1 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── border.png │ │ │ │ ├── controls.png │ │ │ │ ├── loading.gif │ │ │ │ ├── loading_background.png │ │ │ │ └── overlay.png │ │ │ └── index.html │ │ ├── example2 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── controls.png │ │ │ │ └── loading.gif │ │ │ └── index.html │ │ ├── example3 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── controls.png │ │ │ │ └── loading.gif │ │ │ └── index.html │ │ ├── example4 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── border1.png │ │ │ │ ├── border2.png │ │ │ │ └── loading.gif │ │ │ └── index.html │ │ ├── example5 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── border.png │ │ │ │ ├── controls.png │ │ │ │ ├── loading.gif │ │ │ │ └── loading_background.png │ │ │ └── index.html │ │ ├── i18n │ │ │ ├── jquery.colorbox-ar.js │ │ │ ├── jquery.colorbox-bg.js │ │ │ ├── jquery.colorbox-cs.js │ │ │ ├── jquery.colorbox-da.js │ │ │ ├── jquery.colorbox-de.js │ │ │ ├── jquery.colorbox-es.js │ │ │ ├── jquery.colorbox-et.js │ │ │ ├── jquery.colorbox-fa.js │ │ │ ├── jquery.colorbox-fi.js │ │ │ ├── jquery.colorbox-fr.js │ │ │ ├── jquery.colorbox-gl.js │ │ │ ├── jquery.colorbox-he.js │ │ │ ├── jquery.colorbox-hr.js │ │ │ ├── jquery.colorbox-hu.js │ │ │ ├── jquery.colorbox-id.js │ │ │ ├── jquery.colorbox-it.js │ │ │ ├── jquery.colorbox-ja.js │ │ │ ├── jquery.colorbox-kr.js │ │ │ ├── jquery.colorbox-lv.js │ │ │ ├── jquery.colorbox-nl.js │ │ │ ├── jquery.colorbox-no.js │ │ │ ├── jquery.colorbox-pl.js │ │ │ ├── jquery.colorbox-pt-br.js │ │ │ ├── jquery.colorbox-ro.js │ │ │ ├── jquery.colorbox-ru.js │ │ │ ├── jquery.colorbox-si.js │ │ │ ├── jquery.colorbox-sk.js │ │ │ ├── jquery.colorbox-sv.js │ │ │ ├── jquery.colorbox-tr.js │ │ │ ├── jquery.colorbox-uk.js │ │ │ └── jquery.colorbox-zh-CN.js │ │ ├── jquery.colorbox-min.js │ │ └── jquery.colorbox.js │ │ ├── css3-animation │ │ └── animations.css │ │ ├── datepicker │ │ ├── css │ │ │ └── datepicker.css │ │ ├── js │ │ │ └── bootstrap-datepicker.js │ │ └── less │ │ │ └── datepicker.less │ │ ├── dropzone │ │ ├── .gitignore │ │ ├── .tagconfig │ │ ├── .travis.yml │ │ ├── AMD_footer │ │ ├── AMD_header │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.coffee │ │ ├── bower.json │ │ ├── component.json │ │ ├── downloads │ │ │ ├── css │ │ │ │ ├── basic.css │ │ │ │ ├── dropzone.css │ │ │ │ └── stylus │ │ │ │ │ ├── basic.styl │ │ │ │ │ └── dropzone.styl │ │ │ ├── dropzone-amd-module.js │ │ │ ├── dropzone-amd-module.min.js │ │ │ ├── dropzone.js │ │ │ ├── dropzone.min.js │ │ │ └── images │ │ │ │ ├── spritemap.png │ │ │ │ └── spritemap@2x.png │ │ ├── index.js │ │ ├── lib │ │ │ └── dropzone.js │ │ ├── npm_publish.sh │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ │ └── dropzone.coffee │ │ └── test │ │ │ ├── test.coffee │ │ │ ├── test.html │ │ │ └── test.js │ │ ├── dynatree │ │ ├── GPL-LICENSE.txt │ │ ├── MIT-License.txt │ │ ├── dist │ │ │ ├── jquery.dynatree-1.2.4.js │ │ │ └── jquery.dynatree.min.js │ │ ├── doc │ │ │ ├── contextmenu │ │ │ │ ├── images │ │ │ │ │ ├── cut.png │ │ │ │ │ ├── door.png │ │ │ │ │ ├── page_white_copy.png │ │ │ │ │ ├── page_white_delete.png │ │ │ │ │ ├── page_white_edit.png │ │ │ │ │ └── page_white_paste.png │ │ │ │ ├── jquery.contextMenu-custom.js │ │ │ │ └── jquery.contextMenu.css │ │ │ ├── dynatree-doc.html │ │ │ ├── dynatree_server.py │ │ │ ├── howto.css │ │ │ ├── howto.js │ │ │ ├── iconInfo_32x32.png │ │ │ ├── iconWarning_32x32.png │ │ │ ├── icons-vista.psp │ │ │ ├── icons-xp.psp │ │ │ ├── icons_layout.ods │ │ │ ├── jq.context │ │ │ │ ├── images │ │ │ │ │ ├── cut.png │ │ │ │ │ ├── door.png │ │ │ │ │ ├── page_white_copy.png │ │ │ │ │ ├── page_white_delete.png │ │ │ │ │ ├── page_white_edit.png │ │ │ │ │ └── page_white_paste.png │ │ │ │ ├── jquery.contextMenu.css │ │ │ │ ├── jquery.contextMenu.js │ │ │ │ └── jquery.ui.position.js │ │ │ ├── jquery.planize.js │ │ │ ├── nav_bg.png │ │ │ ├── prettify.css │ │ │ ├── prettify.js │ │ │ ├── sample-api.html │ │ │ ├── sample-contextmenu.html │ │ │ ├── sample-contextmenu2.html │ │ │ ├── sample-data1.json │ │ │ ├── sample-data2.json │ │ │ ├── sample-data3.json │ │ │ ├── sample-default.html │ │ │ ├── sample-dnd.html │ │ │ ├── sample-dnd2.html │ │ │ ├── sample-dnd3.html │ │ │ ├── sample-effects.html │ │ │ ├── sample-empty.json │ │ │ ├── sample-events.html │ │ │ ├── sample-form.html │ │ │ ├── sample-iframe-1.html │ │ │ ├── sample-iframe.html │ │ │ ├── sample-init-lazy.html │ │ │ ├── sample-inline-edit.html │ │ │ ├── sample-lazy.html │ │ │ ├── sample-minexpand.html │ │ │ ├── sample-multiline.html │ │ │ ├── sample-persist.html │ │ │ ├── sample-pyserver.html │ │ │ ├── sample-quick.html │ │ │ ├── sample-rtl.html │ │ │ ├── sample-select.html │ │ │ ├── sample-theming.html │ │ │ ├── sample-ul.html │ │ │ ├── sample.css │ │ │ ├── sample.js │ │ │ ├── samples-nav.html │ │ │ ├── samples-top.html │ │ │ ├── samples-welcome.html │ │ │ ├── samples.html │ │ │ ├── skin-custom │ │ │ │ ├── custom.css │ │ │ │ ├── customDoc1.gif │ │ │ │ ├── customDoc2.gif │ │ │ │ ├── customFolder1.gif │ │ │ │ ├── doc_with_children.gif │ │ │ │ ├── folder_docs.gif │ │ │ │ ├── folder_images.gif │ │ │ │ └── folder_page.gif │ │ │ ├── test-bench.html │ │ │ ├── test-css.html │ │ │ ├── test-dtd-html4-strict.html │ │ │ ├── test-dtd-html4-transitional.html │ │ │ ├── test-dtd-html5.html │ │ │ ├── test-dtd-none.html │ │ │ ├── test-dtd-xml-strict.html │ │ │ ├── test-dtd-xml-transitional.html │ │ │ ├── test-latest.html │ │ │ ├── test-persist.html │ │ │ ├── test-preload.html │ │ │ ├── test-release.html │ │ │ ├── test-table.html │ │ │ └── test-xhtml.xhtml │ │ ├── grunt.js │ │ ├── index.html │ │ ├── jquery │ │ │ ├── README.txt │ │ │ ├── jquery-ui.custom.js │ │ │ ├── jquery-ui.custom.min.js │ │ │ ├── jquery.cookie.js │ │ │ ├── jquery.js │ │ │ └── jquery.min.js │ │ ├── package.json │ │ ├── src │ │ │ ├── GPL-LICENSE.txt │ │ │ ├── MIT-License.txt │ │ │ ├── jquery.dynatree.js │ │ │ ├── skin-vista │ │ │ │ ├── icons.gif │ │ │ │ ├── loading.gif │ │ │ │ └── ui.dynatree.css │ │ │ └── skin │ │ │ │ ├── icons-rtl.gif │ │ │ │ ├── icons.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── ui.dynatree.css │ │ │ │ ├── vline-rtl.gif │ │ │ │ └── vline.gif │ │ └── tests │ │ │ ├── qunit.css │ │ │ ├── qunit.js │ │ │ ├── sample-data1.json │ │ │ ├── sample-data2.json │ │ │ ├── test-adhoc.html │ │ │ ├── test-bench.html │ │ │ ├── test-dynatree.js │ │ │ ├── test.html │ │ │ └── tests - Shortcut.lnk │ │ ├── excanvas.min.js │ │ ├── flot │ │ ├── API.md │ │ ├── CONTRIBUTING.md │ │ ├── FAQ.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── NEWS.md │ │ ├── PLUGINS.md │ │ ├── README.md │ │ ├── build.log │ │ ├── examples │ │ │ ├── ajax │ │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ │ ├── data-eu-gdp-growth-5.json │ │ │ │ ├── data-eu-gdp-growth.json │ │ │ │ ├── data-japan-gdp-growth.json │ │ │ │ ├── data-usa-gdp-growth.json │ │ │ │ └── index.html │ │ │ ├── annotating │ │ │ │ └── index.html │ │ │ ├── axes-interacting │ │ │ │ └── index.html │ │ │ ├── axes-multiple │ │ │ │ └── index.html │ │ │ ├── axes-time-zones │ │ │ │ ├── date.js │ │ │ │ ├── index.html │ │ │ │ └── tz │ │ │ │ │ ├── africa │ │ │ │ │ ├── antarctica │ │ │ │ │ ├── asia │ │ │ │ │ ├── australasia │ │ │ │ │ ├── backward │ │ │ │ │ ├── etcetera │ │ │ │ │ ├── europe │ │ │ │ │ ├── factory │ │ │ │ │ ├── iso3166.tab │ │ │ │ │ ├── leapseconds │ │ │ │ │ ├── northamerica │ │ │ │ │ ├── pacificnew │ │ │ │ │ ├── solar87 │ │ │ │ │ ├── solar88 │ │ │ │ │ ├── solar89 │ │ │ │ │ ├── southamerica │ │ │ │ │ ├── systemv │ │ │ │ │ ├── yearistype.sh │ │ │ │ │ └── zone.tab │ │ │ ├── axes-time │ │ │ │ └── index.html │ │ │ ├── background.png │ │ │ ├── basic-options │ │ │ │ └── index.html │ │ │ ├── basic-usage │ │ │ │ └── index.html │ │ │ ├── canvas │ │ │ │ └── index.html │ │ │ ├── categories │ │ │ │ └── index.html │ │ │ ├── examples.css │ │ │ ├── image │ │ │ │ ├── hs-2004-27-a-large-web.jpg │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── interacting │ │ │ │ └── index.html │ │ │ ├── navigate │ │ │ │ ├── arrow-down.gif │ │ │ │ ├── arrow-left.gif │ │ │ │ ├── arrow-right.gif │ │ │ │ ├── arrow-up.gif │ │ │ │ └── index.html │ │ │ ├── percentiles │ │ │ │ └── index.html │ │ │ ├── realtime │ │ │ │ └── index.html │ │ │ ├── resize │ │ │ │ └── index.html │ │ │ ├── selection │ │ │ │ └── index.html │ │ │ ├── series-errorbars │ │ │ │ └── index.html │ │ │ ├── series-pie │ │ │ │ └── index.html │ │ │ ├── series-toggle │ │ │ │ └── index.html │ │ │ ├── series-types │ │ │ │ └── index.html │ │ │ ├── shared │ │ │ │ └── jquery-ui │ │ │ │ │ ├── jquery-ui.min.css │ │ │ │ │ └── jquery-ui.min.js │ │ │ ├── stacking │ │ │ │ └── index.html │ │ │ ├── symbols │ │ │ │ └── index.html │ │ │ ├── threshold │ │ │ │ └── index.html │ │ │ ├── tracking │ │ │ │ └── index.html │ │ │ ├── visitors │ │ │ │ └── index.html │ │ │ └── zooming │ │ │ │ └── index.html │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── jquery.colorhelpers.js │ │ ├── jquery.colorhelpers.min.js │ │ ├── jquery.flot.canvas.js │ │ ├── jquery.flot.canvas.min.js │ │ ├── jquery.flot.categories.js │ │ ├── jquery.flot.categories.min.js │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.crosshair.min.js │ │ ├── jquery.flot.errorbars.js │ │ ├── jquery.flot.errorbars.min.js │ │ ├── jquery.flot.fillbetween.js │ │ ├── jquery.flot.fillbetween.min.js │ │ ├── jquery.flot.image.js │ │ ├── jquery.flot.image.min.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.min.js │ │ ├── jquery.flot.navigate.js │ │ ├── jquery.flot.navigate.min.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.pie.min.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.resize.min.js │ │ ├── jquery.flot.selection.js │ │ ├── jquery.flot.selection.min.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.flot.stack.min.js │ │ ├── jquery.flot.symbol.js │ │ ├── jquery.flot.symbol.min.js │ │ ├── jquery.flot.threshold.js │ │ ├── jquery.flot.threshold.min.js │ │ ├── jquery.flot.time.js │ │ ├── jquery.flot.time.min.js │ │ ├── jquery.js │ │ └── jquery.min.js │ │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── spinning.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _spinning.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ ├── fullcalendar │ │ ├── changelog.txt │ │ ├── demos │ │ │ ├── agenda-views.html │ │ │ ├── basic-views.html │ │ │ ├── cupertino │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png │ │ │ │ │ ├── ui-bg_flat_15_cd0a0a_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_e4f1fb_1x400.png │ │ │ │ │ ├── ui-bg_glass_50_3baae3_1x400.png │ │ │ │ │ ├── ui-bg_glass_80_d7ebf9_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_70_000000_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_deedf7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_25_ffef8f_1x100.png │ │ │ │ │ ├── ui-icons_2694e8_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_3d80b3_256x240.png │ │ │ │ │ ├── ui-icons_72a7cf_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ └── jquery-ui.min.css │ │ │ ├── default.html │ │ │ ├── external-dragging.html │ │ │ ├── gcal.html │ │ │ ├── json-events.php │ │ │ ├── json.html │ │ │ ├── selectable.html │ │ │ └── theme.html │ │ ├── fullcalendar │ │ │ ├── fullcalendar.css │ │ │ ├── fullcalendar.js │ │ │ ├── fullcalendar.min.js │ │ │ ├── fullcalendar.print.css │ │ │ └── gcal.js │ │ ├── lib │ │ │ ├── jquery-ui.custom.min.js │ │ │ └── jquery.min.js │ │ └── license.txt │ │ ├── gmaps │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── bower.json │ │ ├── examples │ │ │ ├── basic.html │ │ │ ├── context_menu.html │ │ │ ├── custom_controls.html │ │ │ ├── elevation_locations.html │ │ │ ├── elevation_routes.html │ │ │ ├── examples.css │ │ │ ├── fusion_tables.html │ │ │ ├── geocoding.html │ │ │ ├── geofences.html │ │ │ ├── geolocation.html │ │ │ ├── geometry.html │ │ │ ├── kml.html │ │ │ ├── layers.html │ │ │ ├── layers_places.html │ │ │ ├── map_events.html │ │ │ ├── map_types.html │ │ │ ├── marker_clusterer.html │ │ │ ├── markers.html │ │ │ ├── overlay_map_types.html │ │ │ ├── overlays.html │ │ │ ├── polygons.html │ │ │ ├── polylines.html │ │ │ ├── routes.html │ │ │ ├── routes_advanced.html │ │ │ ├── static.html │ │ │ ├── static_markers.html │ │ │ ├── static_polylines.html │ │ │ ├── styled_maps.html │ │ │ └── travel_route.html │ │ ├── gmaps.js │ │ ├── lib │ │ │ ├── gmaps.controls.js │ │ │ ├── gmaps.core.js │ │ │ ├── gmaps.events.js │ │ │ ├── gmaps.geofences.js │ │ │ ├── gmaps.geometry.js │ │ │ ├── gmaps.layers.js │ │ │ ├── gmaps.map_types.js │ │ │ ├── gmaps.markers.js │ │ │ ├── gmaps.native_extensions.js │ │ │ ├── gmaps.overlays.js │ │ │ ├── gmaps.routes.js │ │ │ ├── gmaps.static.js │ │ │ ├── gmaps.streetview.js │ │ │ ├── gmaps.styles.js │ │ │ └── gmaps.utils.js │ │ ├── package.json │ │ └── test │ │ │ ├── index.html │ │ │ ├── lib │ │ │ ├── jasmine-html.js │ │ │ ├── jasmine.css │ │ │ └── jasmine.js │ │ │ ├── spec │ │ │ ├── EventSpec.js │ │ │ ├── GeometrySpec.js │ │ │ ├── LayerSpec.js │ │ │ ├── MapSpec.js │ │ │ ├── MarkerSpec.js │ │ │ ├── OverlaySpec.js │ │ │ ├── RouteSpec.js │ │ │ ├── StreetViewSpec.js │ │ │ └── StyleSpec.js │ │ │ ├── style.css │ │ │ └── template │ │ │ └── jasmine-gmaps.html │ │ ├── gritter │ │ ├── README.markdown │ │ ├── css │ │ │ └── jquery.gritter.css │ │ ├── images │ │ │ ├── gritter-light.png │ │ │ ├── gritter-long.png │ │ │ ├── gritter.png │ │ │ ├── ie-spacer.gif │ │ │ └── trees.jpg │ │ ├── index.html │ │ ├── js │ │ │ ├── jquery.gritter.js │ │ │ └── jquery.gritter.min.js │ │ └── package.json │ │ ├── iCheck │ │ ├── README.md │ │ ├── demo │ │ │ ├── css │ │ │ │ ├── custom.css │ │ │ │ ├── custom.styl │ │ │ │ ├── icheck.png │ │ │ │ ├── ie │ │ │ │ │ ├── arrow-bottom.png │ │ │ │ │ ├── arrow-top.png │ │ │ │ │ ├── header-line.png │ │ │ │ │ ├── icon-fork.png │ │ │ │ │ ├── icon-github.png │ │ │ │ │ ├── icon-lab.png │ │ │ │ │ ├── icon-options.png │ │ │ │ │ └── icon-star.png │ │ │ │ ├── montserrat-bold.eot │ │ │ │ ├── montserrat-bold.svg │ │ │ │ ├── montserrat-bold.ttf │ │ │ │ ├── montserrat-bold.woff │ │ │ │ ├── montserrat-regular.eot │ │ │ │ ├── montserrat-regular.svg │ │ │ │ ├── montserrat-regular.ttf │ │ │ │ ├── montserrat-regular.woff │ │ │ │ └── normalize.css │ │ │ ├── index.html │ │ │ └── js │ │ │ │ ├── custom.js │ │ │ │ ├── jquery.js │ │ │ │ └── zepto.js │ │ ├── jquery.icheck.js │ │ ├── jquery.icheck.min.js │ │ ├── skins │ │ │ ├── all.css │ │ │ ├── flat │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── flat.css │ │ │ │ ├── flat.png │ │ │ │ ├── flat@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── futurico │ │ │ │ ├── futurico.css │ │ │ │ ├── futurico.png │ │ │ │ └── futurico@2x.png │ │ │ ├── line │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── blue.css │ │ │ │ ├── green.css │ │ │ │ ├── grey.css │ │ │ │ ├── line.css │ │ │ │ ├── line.png │ │ │ │ ├── line@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── pink.css │ │ │ │ ├── purple.css │ │ │ │ ├── red.css │ │ │ │ └── yellow.css │ │ │ ├── minimal │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── minimal.css │ │ │ │ ├── minimal.png │ │ │ │ ├── minimal@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── polaris │ │ │ │ ├── polaris.css │ │ │ │ ├── polaris.png │ │ │ │ └── polaris@2x.png │ │ │ ├── square │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── square.css │ │ │ │ ├── square.png │ │ │ │ ├── square@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ └── ui_sliders.html │ │ ├── zepto.icheck.js │ │ └── zepto.icheck.min.js │ │ ├── jQRangeSlider │ │ ├── GPL-License.txt │ │ ├── History.md │ │ ├── MIT-License.txt │ │ ├── Readme.md │ │ ├── css │ │ │ ├── classic-min.css │ │ │ ├── classic.css │ │ │ ├── iThing-min.css │ │ │ ├── iThing.css │ │ │ └── icons-classic │ │ │ │ ├── label.png │ │ │ │ ├── resultset_next.png │ │ │ │ └── resultset_previous.png │ │ ├── demo │ │ │ ├── dateSliderDemo.js │ │ │ ├── demo.js │ │ │ ├── editSliderDemo.js │ │ │ ├── img │ │ │ │ ├── calendar.png │ │ │ │ ├── classicTheme.png │ │ │ │ └── iThingTheme.png │ │ │ ├── index.html │ │ │ ├── lib │ │ │ │ └── jquery-ui │ │ │ │ │ ├── css │ │ │ │ │ └── smoothness │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ └── jquery-ui-1.8.10.custom.css │ │ │ │ │ └── js │ │ │ │ │ └── jquery-ui-1.8.16.custom.min.js │ │ │ ├── sliderDemo.js │ │ │ └── style.css │ │ ├── jQAllRangeSliders-min.js │ │ ├── jQAllRangeSliders-withRuler-min.js │ │ ├── jQDateRangeSlider-min.js │ │ ├── jQDateRangeSlider-withRuler-min.js │ │ ├── jQEditRangeSlider-min.js │ │ ├── jQEditRangeSlider-withRuler-min.js │ │ ├── jQRangeSlider-min.js │ │ ├── jQRangeSlider-withRuler-min.js │ │ └── lib │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── jquery-ui-1.8.16.custom.min.js │ │ │ ├── jquery-ui.license.txt │ │ │ ├── jquery.license.txt │ │ │ ├── jquery.mousewheel.license.txt │ │ │ └── jquery.mousewheel.min.js │ │ ├── jQuery-File-Upload │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── angularjs.html │ │ ├── basic-plus.html │ │ ├── basic.html │ │ ├── blueimp-file-upload.jquery.json │ │ ├── bower.json │ │ ├── cors │ │ │ ├── postmessage.html │ │ │ └── result.html │ │ ├── css │ │ │ ├── demo-ie8.css │ │ │ ├── demo.css │ │ │ ├── jquery.fileupload-ui-noscript.css │ │ │ ├── jquery.fileupload-ui.css │ │ │ └── style.css │ │ ├── img │ │ │ ├── loading.gif │ │ │ └── progressbar.gif │ │ ├── index.html │ │ ├── jquery-ui.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── cors │ │ │ │ ├── jquery.postmessage-transport.js │ │ │ │ └── jquery.xdr-transport.js │ │ │ ├── jquery.fileupload-angular.js │ │ │ ├── jquery.fileupload-audio.js │ │ │ ├── jquery.fileupload-image.js │ │ │ ├── jquery.fileupload-jquery-ui.js │ │ │ ├── jquery.fileupload-process.js │ │ │ ├── jquery.fileupload-ui.js │ │ │ ├── jquery.fileupload-validate.js │ │ │ ├── jquery.fileupload-video.js │ │ │ ├── jquery.fileupload.js │ │ │ ├── jquery.iframe-transport.js │ │ │ ├── main.js │ │ │ └── vendor │ │ │ │ └── jquery.ui.widget.js │ │ ├── package.json │ │ ├── server │ │ │ ├── gae-go │ │ │ │ ├── app.yaml │ │ │ │ ├── app │ │ │ │ │ └── main.go │ │ │ │ └── static │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── robots.txt │ │ │ ├── gae-python │ │ │ │ ├── app.yaml │ │ │ │ ├── main.py │ │ │ │ └── static │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── robots.txt │ │ │ ├── node │ │ │ │ ├── .gitignore │ │ │ │ ├── package.json │ │ │ │ ├── public │ │ │ │ │ └── files │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── server.js │ │ │ │ └── tmp │ │ │ │ │ └── .gitignore │ │ │ └── php │ │ │ │ ├── UploadHandler.php │ │ │ │ ├── files │ │ │ │ ├── .gitignore │ │ │ │ └── .htaccess │ │ │ │ └── index.php │ │ └── test │ │ │ ├── index.html │ │ │ └── test.js │ │ ├── jQuery-Knob │ │ ├── README.md │ │ ├── index.html │ │ ├── js │ │ │ ├── jquery.knob-rtl.js │ │ │ └── jquery.knob.js │ │ └── knob.jquery.json │ │ ├── jQuery-Smart-Wizard │ │ ├── README.md │ │ ├── images │ │ │ └── loader.gif │ │ ├── index.htm │ │ ├── js │ │ │ ├── jquery-2.0.0.min.js │ │ │ └── jquery.smartWizard.js │ │ ├── more_examples │ │ │ ├── services │ │ │ │ └── service.php │ │ │ ├── smartwizard2-ajax.htm │ │ │ └── smartwizard2-validation.php │ │ ├── smartwizard-autostep.htm │ │ ├── smartwizard2-ajax.htm │ │ ├── smartwizard2-multiple.htm │ │ ├── smartwizard2-validation.htm │ │ ├── smartwizard2-vertical.htm │ │ └── styles │ │ │ ├── demo_style.css │ │ │ ├── smart_wizard.css │ │ │ └── smart_wizard_vertical.css │ │ ├── jQuery-Tags-Input │ │ ├── README.md │ │ ├── bower.json │ │ ├── example.html │ │ ├── jquery.tagsinput.css │ │ ├── jquery.tagsinput.js │ │ ├── jquery.tagsinput.min.js │ │ └── test │ │ │ ├── fake_json_endpoint.html │ │ │ └── fake_plaintext_endpoint.html │ │ ├── jqGrid │ │ ├── css │ │ │ ├── ellipsis-xbl.xml │ │ │ └── ui.jqgrid.css │ │ ├── js │ │ │ ├── Changes.txt │ │ │ ├── i18n │ │ │ │ ├── grid.locale-ar.js │ │ │ │ ├── grid.locale-bg.js │ │ │ │ ├── grid.locale-bg1251.js │ │ │ │ ├── grid.locale-cat.js │ │ │ │ ├── grid.locale-cn.js │ │ │ │ ├── grid.locale-cs.js │ │ │ │ ├── grid.locale-da.js │ │ │ │ ├── grid.locale-de.js │ │ │ │ ├── grid.locale-dk.js │ │ │ │ ├── grid.locale-el.js │ │ │ │ ├── grid.locale-en.js │ │ │ │ ├── grid.locale-es.js │ │ │ │ ├── grid.locale-fa.js │ │ │ │ ├── grid.locale-fi.js │ │ │ │ ├── grid.locale-fr.js │ │ │ │ ├── grid.locale-gl.js │ │ │ │ ├── grid.locale-he.js │ │ │ │ ├── grid.locale-hr.js │ │ │ │ ├── grid.locale-hr1250.js │ │ │ │ ├── grid.locale-hu.js │ │ │ │ ├── grid.locale-id.js │ │ │ │ ├── grid.locale-is.js │ │ │ │ ├── grid.locale-it.js │ │ │ │ ├── grid.locale-ja.js │ │ │ │ ├── grid.locale-kr.js │ │ │ │ ├── grid.locale-lt.js │ │ │ │ ├── grid.locale-mne.js │ │ │ │ ├── grid.locale-nl.js │ │ │ │ ├── grid.locale-no.js │ │ │ │ ├── grid.locale-pl.js │ │ │ │ ├── grid.locale-pt-br.js │ │ │ │ ├── grid.locale-pt.js │ │ │ │ ├── grid.locale-ro.js │ │ │ │ ├── grid.locale-ru.js │ │ │ │ ├── grid.locale-sk.js │ │ │ │ ├── grid.locale-sr-latin.js │ │ │ │ ├── grid.locale-sr.js │ │ │ │ ├── grid.locale-sv.js │ │ │ │ ├── grid.locale-th.js │ │ │ │ ├── grid.locale-tr.js │ │ │ │ ├── grid.locale-tw.js │ │ │ │ ├── grid.locale-ua.js │ │ │ │ └── grid.locale-vi.js │ │ │ ├── install.txt │ │ │ ├── jquery-1.7.2.min.js │ │ │ ├── jquery.jqGrid.min.js │ │ │ └── jquery.jqGrid.src.js │ │ ├── plugins │ │ │ ├── grid.addons.js │ │ │ ├── grid.postext.js │ │ │ ├── grid.setcolumns.js │ │ │ ├── jquery.contextmenu.js │ │ │ ├── jquery.searchFilter.js │ │ │ ├── jquery.tablednd.js │ │ │ ├── searchFilter.css │ │ │ ├── ui.multiselect.css │ │ │ └── ui.multiselect.js │ │ └── src │ │ │ ├── JsonXml.js │ │ │ ├── css │ │ │ ├── ellipsis-xbl.xml │ │ │ ├── ui.jqgrid.css │ │ │ └── ui.multiselect.css │ │ │ ├── grid.base.js │ │ │ ├── grid.celledit.js │ │ │ ├── grid.common.js │ │ │ ├── grid.custom.js │ │ │ ├── grid.filter.js │ │ │ ├── grid.formedit.js │ │ │ ├── grid.grouping.js │ │ │ ├── grid.import.js │ │ │ ├── grid.inlinedit.js │ │ │ ├── grid.jqueryui.js │ │ │ ├── grid.loader.js │ │ │ ├── grid.subgrid.js │ │ │ ├── grid.tbltogrid.js │ │ │ ├── grid.treegrid.js │ │ │ ├── i18n │ │ │ ├── grid.locale-ar.js │ │ │ ├── grid.locale-bg.js │ │ │ ├── grid.locale-bg1251.js │ │ │ ├── grid.locale-cat.js │ │ │ ├── grid.locale-cn.js │ │ │ ├── grid.locale-cs.js │ │ │ ├── grid.locale-da.js │ │ │ ├── grid.locale-de.js │ │ │ ├── grid.locale-dk.js │ │ │ ├── grid.locale-el.js │ │ │ ├── grid.locale-en.js │ │ │ ├── grid.locale-es.js │ │ │ ├── grid.locale-fa.js │ │ │ ├── grid.locale-fi.js │ │ │ ├── grid.locale-fr.js │ │ │ ├── grid.locale-gl.js │ │ │ ├── grid.locale-he.js │ │ │ ├── grid.locale-hr.js │ │ │ ├── grid.locale-hr1250.js │ │ │ ├── grid.locale-hu.js │ │ │ ├── grid.locale-id.js │ │ │ ├── grid.locale-is.js │ │ │ ├── grid.locale-it.js │ │ │ ├── grid.locale-ja.js │ │ │ ├── grid.locale-kr.js │ │ │ ├── grid.locale-lt.js │ │ │ ├── grid.locale-mne.js │ │ │ ├── grid.locale-nl.js │ │ │ ├── grid.locale-no.js │ │ │ ├── grid.locale-pl.js │ │ │ ├── grid.locale-pt-br.js │ │ │ ├── grid.locale-pt.js │ │ │ ├── grid.locale-ro.js │ │ │ ├── grid.locale-ru.js │ │ │ ├── grid.locale-sk.js │ │ │ ├── grid.locale-sr-latin.js │ │ │ ├── grid.locale-sr.js │ │ │ ├── grid.locale-sv.js │ │ │ ├── grid.locale-th.js │ │ │ ├── grid.locale-tr.js │ │ │ ├── grid.locale-tw.js │ │ │ ├── grid.locale-ua.js │ │ │ └── grid.locale-vi.js │ │ │ ├── jqDnR.js │ │ │ ├── jqModal.js │ │ │ └── jquery.fmatter.js │ │ ├── jquery-address │ │ ├── address.css │ │ └── address.js │ │ ├── jquery-cookie │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── .tm_properties │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── MIT-LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── cookie.jquery.json │ │ ├── jquery.cookie.js │ │ ├── package.json │ │ └── test │ │ │ ├── index.html │ │ │ ├── malformed_cookie.html │ │ │ ├── server.js │ │ │ └── tests.js │ │ ├── jquery-easy-pie-chart │ │ ├── Makefile │ │ ├── Readme.md │ │ ├── examples │ │ │ ├── excanvas.js │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── img │ │ │ └── easy-pie-chart.png │ │ ├── jquery.easy-pie-chart.coffee │ │ └── jquery.easy-pie-chart.js │ │ ├── jquery-inputlimiter │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ ├── LICENSE.txt.svn-base │ │ │ │ ├── demo.htm.svn-base │ │ │ │ ├── jquery-1.7.2.min.js.svn-base │ │ │ │ ├── jquery.inputlimiter.1.0.css.svn-base │ │ │ │ ├── jquery.inputlimiter.1.3.1.js.svn-base │ │ │ │ └── jquery.inputlimiter.1.3.1.min.js.svn-base │ │ ├── LICENSE.txt │ │ ├── demo.htm │ │ ├── jquery-1.7.2.min.js │ │ ├── jquery.inputlimiter.1.0.css │ │ ├── jquery.inputlimiter.1.3.1.js │ │ └── jquery.inputlimiter.1.3.1.min.js │ │ ├── jquery-maskmoney │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.html │ │ ├── jquery.maskMoney.js │ │ └── maskmoney.jquery.json │ │ ├── jquery-migrate │ │ └── jquery-migrate-1.2.1.min.js │ │ ├── jquery-mockjax │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── jquery.mockjax.js │ │ ├── lib │ │ │ ├── jquery-1.3.2.js │ │ │ ├── jquery-1.4.4.js │ │ │ ├── jquery-1.5.2.js │ │ │ ├── jquery-1.6.4.js │ │ │ ├── jquery-1.7.2.js │ │ │ ├── jquery-1.8.3.js │ │ │ ├── jquery-1.9.1.js │ │ │ ├── jquery-2.0.0.js │ │ │ ├── jquery.xmldom.js │ │ │ ├── json2.js │ │ │ ├── qunit.css │ │ │ ├── qunit.js │ │ │ └── testswarm.js │ │ ├── package.json │ │ ├── test │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── test.js │ │ │ ├── test.json │ │ │ ├── test_jsonp.js │ │ │ ├── test_proxy.json │ │ │ └── test_script.js │ │ └── testswarm.json │ │ ├── jquery-ui-touch-punch │ │ ├── README.md │ │ ├── jquery.ui.touch-punch.js │ │ └── jquery.ui.touch-punch.min.js │ │ ├── jquery-ui │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── jquery-ui-1.10.1.custom.css │ │ ├── jquery-ui-1.10.1.custom.min.css │ │ ├── jquery-ui-1.10.1.custom.min.js │ │ ├── jquery-ui-1.10.2.custom.min.js │ │ └── jquery-ui-1.9.2.custom.min.js │ │ ├── jquery-validation │ │ ├── README.md │ │ ├── changelog.txt │ │ ├── demo │ │ │ ├── ajaxSubmit-integration-demo.html │ │ │ ├── captcha │ │ │ │ ├── captcha.js │ │ │ │ ├── fonts │ │ │ │ │ └── Anorexia.ttf │ │ │ │ ├── image_req.php │ │ │ │ ├── images │ │ │ │ │ ├── button.png │ │ │ │ │ └── image.php │ │ │ │ ├── index.php │ │ │ │ ├── newsession.php │ │ │ │ ├── process.php │ │ │ │ ├── rand.php │ │ │ │ └── style.css │ │ │ ├── css │ │ │ │ ├── cmxform.css │ │ │ │ ├── cmxformTemplate.css │ │ │ │ ├── core.css │ │ │ │ ├── reset.css │ │ │ │ └── screen.css │ │ │ ├── custom-messages-data-demo.html │ │ │ ├── custom-methods-demo.html │ │ │ ├── dynamic-totals.html │ │ │ ├── errorcontainer-demo.html │ │ │ ├── file_input.html │ │ │ ├── images │ │ │ │ ├── bg.gif │ │ │ │ ├── checked.gif │ │ │ │ ├── cmxform-divider.gif │ │ │ │ ├── cmxform-fieldset.gif │ │ │ │ ├── loading.gif │ │ │ │ └── unchecked.gif │ │ │ ├── index.html │ │ │ ├── jquerymobile.html │ │ │ ├── login │ │ │ │ ├── images │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── header1.jpg │ │ │ │ │ ├── page.gif │ │ │ │ │ └── required_star.gif │ │ │ │ ├── index.html │ │ │ │ └── screen.css │ │ │ ├── marketo │ │ │ │ ├── images │ │ │ │ │ ├── backRequiredGray.gif │ │ │ │ │ ├── back_green-fade.gif │ │ │ │ │ ├── back_nav_blue.gif │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── button-submit.gif │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── help.png │ │ │ │ │ ├── left-nav-callout-long.png │ │ │ │ │ ├── login-sprite.gif │ │ │ │ │ ├── logo_marketo.gif │ │ │ │ │ ├── sf.png │ │ │ │ │ ├── step1-24.gif │ │ │ │ │ ├── step2-24.gif │ │ │ │ │ ├── step3-24.gif │ │ │ │ │ ├── tab-sprite.gif │ │ │ │ │ ├── tab_green.gif │ │ │ │ │ ├── time.png │ │ │ │ │ ├── toggle.gif │ │ │ │ │ └── warning.gif │ │ │ │ ├── index.html │ │ │ │ ├── jquery.maskedinput.js │ │ │ │ ├── mktSignup.js │ │ │ │ ├── step2.htm │ │ │ │ └── stylesheet.css │ │ │ ├── milk │ │ │ │ ├── bg.gif │ │ │ │ ├── index.html │ │ │ │ ├── left_white.png │ │ │ │ ├── milk.css │ │ │ │ ├── milk.png │ │ │ │ └── right_white.png │ │ │ ├── multipart │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jquery.maskedinput-1.0.js │ │ │ │ │ ├── ui.accordion.js │ │ │ │ │ └── ui.core.js │ │ │ │ └── style.css │ │ │ ├── radio-checkbox-select-demo.html │ │ │ ├── tabs │ │ │ │ └── index.html │ │ │ ├── themerollered.html │ │ │ └── tinymce │ │ │ │ ├── index.html │ │ │ │ ├── themes │ │ │ │ └── simple │ │ │ │ │ ├── editor_template.js │ │ │ │ │ ├── img │ │ │ │ │ └── icons.gif │ │ │ │ │ ├── langs │ │ │ │ │ └── en.js │ │ │ │ │ └── skins │ │ │ │ │ └── default │ │ │ │ │ └── ui.css │ │ │ │ └── tiny_mce.js │ │ ├── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ ├── lib │ │ │ ├── jquery-1.6.4.js │ │ │ ├── jquery-1.7.2.js │ │ │ ├── jquery-1.8.3.js │ │ │ ├── jquery-1.9.0.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.js │ │ │ └── jquery.mockjax.js │ │ ├── localization │ │ │ ├── messages_ar.js │ │ │ ├── messages_bg.js │ │ │ ├── messages_ca.js │ │ │ ├── messages_cs.js │ │ │ ├── messages_da.js │ │ │ ├── messages_de.js │ │ │ ├── messages_el.js │ │ │ ├── messages_es.js │ │ │ ├── messages_et.js │ │ │ ├── messages_eu.js │ │ │ ├── messages_fa.js │ │ │ ├── messages_fi.js │ │ │ ├── messages_fr.js │ │ │ ├── messages_he.js │ │ │ ├── messages_hr.js │ │ │ ├── messages_hu.js │ │ │ ├── messages_it.js │ │ │ ├── messages_ja.js │ │ │ ├── messages_ka.js │ │ │ ├── messages_kk.js │ │ │ ├── messages_ko.js │ │ │ ├── messages_lt.js │ │ │ ├── messages_lv.js │ │ │ ├── messages_my.js │ │ │ ├── messages_nl.js │ │ │ ├── messages_no.js │ │ │ ├── messages_pl.js │ │ │ ├── messages_pt_BR.js │ │ │ ├── messages_pt_PT.js │ │ │ ├── messages_ro.js │ │ │ ├── messages_ru.js │ │ │ ├── messages_si.js │ │ │ ├── messages_sk.js │ │ │ ├── messages_sl.js │ │ │ ├── messages_sr.js │ │ │ ├── messages_sv.js │ │ │ ├── messages_th.js │ │ │ ├── messages_tr.js │ │ │ ├── messages_uk.js │ │ │ ├── messages_vi.js │ │ │ ├── messages_zh.js │ │ │ ├── messages_zh_TW.js │ │ │ ├── methods_de.js │ │ │ ├── methods_nl.js │ │ │ └── methods_pt.js │ │ ├── package.json │ │ └── test │ │ │ ├── events.html │ │ │ ├── firebug │ │ │ ├── errorIcon.png │ │ │ ├── firebug.css │ │ │ ├── firebug.html │ │ │ ├── firebug.js │ │ │ ├── firebugx.js │ │ │ ├── infoIcon.png │ │ │ └── warningIcon.png │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── large.html │ │ │ ├── messages.js │ │ │ ├── methods.js │ │ │ ├── qunit │ │ │ ├── qunit.css │ │ │ └── qunit.js │ │ │ ├── rules.js │ │ │ ├── selects │ │ │ └── index.html │ │ │ ├── tabs.html │ │ │ └── test.js │ │ ├── jquery.maskedinput │ │ ├── .gitignore │ │ ├── Jakefile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── demo │ │ │ ├── datepicker.html │ │ │ └── index.html │ │ ├── dist │ │ │ ├── jquery.maskedinput.js │ │ │ └── jquery.maskedinput.min.js │ │ ├── lib │ │ │ ├── jquery-1.8.3.min.js │ │ │ └── jquery-1.9.0.min.js │ │ ├── maskedinput.jquery.json │ │ ├── plugin.json │ │ ├── spec │ │ │ ├── Backspace.Spec.js │ │ │ ├── Delete.spec.js │ │ │ ├── Escape.Spec.js │ │ │ ├── Focus.Spec.js │ │ │ ├── Paste.Spec.js │ │ │ ├── Raw.Spec.js │ │ │ ├── Setup.Spec.js │ │ │ ├── SpecRunner.html │ │ │ ├── Typing.Spec.js │ │ │ └── lib │ │ │ │ ├── jasmine-species │ │ │ │ ├── BSD.LICENSE │ │ │ │ ├── jasmine-be-calm.css │ │ │ │ ├── jasmine-grammar.js │ │ │ │ ├── jasmine-reporting.js │ │ │ │ └── version.json │ │ │ │ ├── jasmine │ │ │ │ ├── MIT.LICENSE │ │ │ │ ├── jasmine-html.js │ │ │ │ ├── jasmine.css │ │ │ │ └── jasmine.js │ │ │ │ ├── jquery.keymasher.js │ │ │ │ └── matchers.js │ │ ├── src │ │ │ └── jquery.maskedinput.js │ │ └── templates │ │ │ └── jquery.maskedinput.template │ │ ├── jquery.pulsate │ │ ├── jquery.pulsate.js │ │ └── jquery.pulsate.min.js │ │ ├── jquery.sparkline │ │ └── jquery.sparkline.js │ │ ├── ladda-bootstrap │ │ ├── .DS_Store │ │ ├── LICENSE │ │ ├── README.md │ │ ├── css │ │ │ ├── ladda-theme.scss │ │ │ ├── ladda.scss │ │ │ └── prism.css │ │ ├── dist │ │ │ ├── ladda-themeless.min.css │ │ │ ├── ladda.min.css │ │ │ ├── ladda.min.js │ │ │ └── spin.min.js │ │ ├── index.html │ │ ├── js │ │ │ ├── ladda.js │ │ │ ├── prism.js │ │ │ └── spin.js │ │ └── params.json │ │ ├── less │ │ └── less-1.5.0.min.js │ │ ├── moment │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── ender.js │ │ ├── lang │ │ │ ├── ar-ma.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── br.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cv.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── ml.js │ │ │ ├── mr.js │ │ │ ├── ms-my.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tzm-la.js │ │ │ ├── tzm.js │ │ │ ├── uk.js │ │ │ ├── vn.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ ├── min │ │ │ ├── langs.js │ │ │ ├── langs.min.js │ │ │ ├── moment+langs.js │ │ │ ├── moment+langs.min.js │ │ │ └── moment.min.js │ │ ├── moment.js │ │ ├── package.js │ │ ├── package.json │ │ ├── readme.md │ │ ├── tasks │ │ │ ├── component.js │ │ │ ├── embed_languages.js │ │ │ ├── history.js │ │ │ ├── size.js │ │ │ └── zones.js │ │ └── test │ │ │ ├── lang │ │ │ ├── ar-ma.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── br.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cv.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── ml.js │ │ │ ├── mr.js │ │ │ ├── ms-my.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tzm-la.js │ │ │ ├── tzm.js │ │ │ ├── uk.js │ │ │ ├── vn.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ │ └── moment │ │ │ ├── add_subtract.js │ │ │ ├── create.js │ │ │ ├── days_in_month.js │ │ │ ├── diff.js │ │ │ ├── duration.js │ │ │ ├── format.js │ │ │ ├── getters_setters.js │ │ │ ├── is_after.js │ │ │ ├── is_before.js │ │ │ ├── is_moment.js │ │ │ ├── is_same.js │ │ │ ├── is_valid.js │ │ │ ├── lang.js │ │ │ ├── leapyear.js │ │ │ ├── listers.js │ │ │ ├── min_max.js │ │ │ ├── mutable.js │ │ │ ├── normalizeUnits.js │ │ │ ├── preparse_postformat.js │ │ │ ├── sod_eod.js │ │ │ ├── string_prototype.js │ │ │ ├── utc.js │ │ │ ├── week_year.js │ │ │ ├── weekday.js │ │ │ ├── weeks.js │ │ │ └── zones.js │ │ ├── nestable │ │ ├── README.md │ │ ├── index.html │ │ └── jquery.nestable.js │ │ ├── perfect-scrollbar │ │ ├── .csslintrc │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── examples │ │ │ ├── azusa.jpg │ │ │ ├── options-default.html │ │ │ ├── options-minScrollbarLength.html │ │ │ ├── options-suppressScrollAxis.html │ │ │ ├── options-useBothWheelAxes.html │ │ │ ├── options-wheelPropagation.html │ │ │ ├── options-wheelSpeed.html │ │ │ └── text-content.html │ │ ├── min │ │ │ ├── perfect-scrollbar-0.4.6.min.css │ │ │ ├── perfect-scrollbar-0.4.6.min.js │ │ │ └── perfect-scrollbar-0.4.6.with-mousewheel.min.js │ │ ├── package.json │ │ ├── perfect-scrollbar.jquery.json │ │ └── src │ │ │ ├── jquery.mousewheel.js │ │ │ ├── perfect-scrollbar.css │ │ │ └── perfect-scrollbar.js │ │ ├── rainyday │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── demo.html │ │ └── rainyday.js │ │ ├── respond.min.js │ │ ├── select2 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── release.sh │ │ ├── select2-spinner.gif │ │ ├── select2.css │ │ ├── select2.jquery.json │ │ ├── select2.js │ │ ├── select2.min.js │ │ ├── select2.png │ │ ├── select2_locale_ar.js │ │ ├── select2_locale_bg.js │ │ ├── select2_locale_ca.js │ │ ├── select2_locale_cs.js │ │ ├── select2_locale_da.js │ │ ├── select2_locale_de.js │ │ ├── select2_locale_el.js │ │ ├── select2_locale_en.js.template │ │ ├── select2_locale_es.js │ │ ├── select2_locale_et.js │ │ ├── select2_locale_eu.js │ │ ├── select2_locale_fa.js │ │ ├── select2_locale_fi.js │ │ ├── select2_locale_fr.js │ │ ├── select2_locale_gl.js │ │ ├── select2_locale_he.js │ │ ├── select2_locale_hr.js │ │ ├── select2_locale_hu.js │ │ ├── select2_locale_id.js │ │ ├── select2_locale_is.js │ │ ├── select2_locale_it.js │ │ ├── select2_locale_ja.js │ │ ├── select2_locale_ko.js │ │ ├── select2_locale_lt.js │ │ ├── select2_locale_lv.js │ │ ├── select2_locale_mk.js │ │ ├── select2_locale_ms.js │ │ ├── select2_locale_nl.js │ │ ├── select2_locale_no.js │ │ ├── select2_locale_pl.js │ │ ├── select2_locale_pt-BR.js │ │ ├── select2_locale_pt-PT.js │ │ ├── select2_locale_ro.js │ │ ├── select2_locale_ru.js │ │ ├── select2_locale_sk.js │ │ ├── select2_locale_sv.js │ │ ├── select2_locale_th.js │ │ ├── select2_locale_tr.js │ │ ├── select2_locale_ua.js │ │ ├── select2_locale_vi.js │ │ ├── select2_locale_zh-CN.js │ │ ├── select2_locale_zh-TW.js │ │ └── select2x2.png │ │ ├── summernote │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── bs2.html │ │ ├── build │ │ │ ├── summernote-bootstrap.css │ │ │ ├── summernote.css │ │ │ └── summernote.min.js │ │ ├── elements.less │ │ ├── index.html │ │ ├── package.json │ │ ├── summernote.js │ │ ├── summernote.less │ │ └── test │ │ │ ├── dom.spec.html │ │ │ ├── dom.spec.js │ │ │ ├── list.spec.html │ │ │ ├── list.spec.js │ │ │ ├── qunit-1.11.0.css │ │ │ ├── qunit-1.11.0.js │ │ │ ├── range.spec.html │ │ │ └── range.spec.js │ │ ├── typeaheadjs │ │ ├── lib │ │ │ ├── typeahead.js │ │ │ └── typeahead.js-bootstrap.css │ │ └── typeaheadjs.js │ │ ├── wysihtml5 │ │ ├── bootstrap-wysihtml5-0.0.2 │ │ │ ├── bootstrap-wysihtml5-0.0.2.css │ │ │ ├── bootstrap-wysihtml5-0.0.2.js │ │ │ ├── bootstrap-wysihtml5-0.0.2.min.js │ │ │ ├── bootstrap-wysihtml5.js │ │ │ ├── wysihtml5-0.3.0.js │ │ │ ├── wysihtml5-0.3.0.min.js │ │ │ └── wysiwyg-color.css │ │ └── wysihtml5.js │ │ └── x-editable │ │ ├── css │ │ └── bootstrap-editable.css │ │ ├── demo-mock.js │ │ ├── demo.js │ │ ├── img │ │ ├── clear.png │ │ └── loading.gif │ │ └── js │ │ ├── bootstrap-editable.js │ │ └── bootstrap-editable.min.js ├── bootstrap │ ├── css │ │ ├── bootstrap-responsive.min.css │ │ └── bootstrap.min.css │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ └── js │ │ └── bootstrap.min.js ├── category.php ├── change-password.php ├── closed-complaint.php ├── college.php ├── complaint-details.php ├── css │ └── theme.css ├── department.php ├── edit-category.php ├── edit-state.php ├── edit-subcategory.php ├── get_subcat.php ├── images │ ├── bg.png │ ├── icons │ │ ├── css │ │ │ └── font-awesome.css │ │ └── font │ │ │ ├── fontawesome-webfont3294.eot │ │ │ ├── fontawesome-webfont3294.ttf │ │ │ ├── fontawesome-webfont3294.woff │ │ │ └── fontawesome-webfontd41d.eot │ ├── img.jpg │ ├── jquery-ui │ │ └── picker.png │ └── user.png ├── include │ ├── config.php │ ├── footer.php │ ├── header.php │ └── sidebar.php ├── index.php ├── inprocess-complaint.php ├── logout.php ├── manage-users.php ├── notprocess-complaint.php ├── pending-orders.php ├── scripts │ ├── common.js │ ├── datatables │ │ └── jquery.dataTables.js │ ├── flot │ │ ├── jquery.flot.js │ │ ├── jquery.flot.pie.js │ │ └── jquery.flot.resize.js │ ├── jquery-1.9.1.min.js │ └── jquery-ui-1.10.1.custom.min.js ├── state.php ├── subcategory.php ├── university.php ├── updatecomplaint.php ├── user-logs.php └── userprofile.php └── users ├── assets ├── .DS_Store ├── css │ ├── .DS_Store │ ├── bootstrap.css │ ├── style-responsive.css │ ├── style.css │ ├── table-responsive.css │ ├── to-do.css │ └── zabuto_calendar.css ├── font-awesome │ ├── .DS_Store │ ├── css │ │ ├── .DS_Store │ │ └── font-awesome.css │ └── fonts │ │ ├── .DS_Store │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff ├── fonts │ ├── .DS_Store │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── img │ ├── .DS_Store │ ├── checkbox-gray.png │ ├── login-bg.jpg │ ├── radio-gray.png │ ├── ui-sam.jpg │ └── zoom.png ├── js │ ├── .DS_Store │ ├── bootstrap-inputmask │ │ ├── .DS_Store │ │ └── bootstrap-inputmask.min.js │ ├── bootstrap-switch.js │ ├── bootstrap.min.js │ ├── calendar-conf-events.js │ ├── chart-master │ │ ├── .DS_Store │ │ └── Chart.js │ ├── chartjs-conf.js │ ├── common-scripts.js │ ├── easy-pie-chart.js │ ├── fancybox │ │ ├── .DS_Store │ │ ├── jquery.fancybox.css │ │ └── jquery.fancybox.js │ ├── form-component.js │ ├── fullcalendar │ │ ├── .DS_Store │ │ ├── bootstrap-fullcalendar.css │ │ └── fullcalendar.min.js │ ├── gritter-conf.js │ ├── gritter │ │ ├── .DS_Store │ │ ├── css │ │ │ ├── .DS_Store │ │ │ ├── jquery.gritter.css │ │ │ └── jquery.gritter0.css │ │ ├── images │ │ │ ├── .DS_Store │ │ │ ├── gritter-light.png │ │ │ ├── gritter-long.png │ │ │ ├── gritter.png │ │ │ └── ie-spacer.gif │ │ └── js │ │ │ ├── .DS_Store │ │ │ └── jquery.gritter.js │ ├── jquery-1.8.3.min.js │ ├── jquery-easy-pie-chart │ │ ├── .DS_Store │ │ ├── jquery.easy-pie-chart.css │ │ └── jquery.easy-pie-chart.js │ ├── jquery-ui-1.9.2.custom.min.js │ ├── jquery.backstretch.min.js │ ├── jquery.dcjqaccordion.2.7.js │ ├── jquery.js │ ├── jquery.nicescroll.js │ ├── jquery.scrollTo.min.js │ ├── jquery.sparkline.js │ ├── jquery.tagsinput.js │ ├── jquery.ui.touch-punch.min.js │ ├── morris-conf.js │ ├── sparkline-chart.js │ ├── tasks.js │ └── zabuto_calendar.js └── lineicons │ ├── .DS_Store │ ├── fonts │ ├── .DS_Store │ ├── linecons.eot │ ├── linecons.svg │ ├── linecons.ttf │ └── linecons.woff │ ├── index.html │ ├── lte-ie7.js │ └── style.css ├── change-password.php ├── check_availability.php ├── complaint-details.php ├── complaint-history.php ├── complaintdocs ├── About Us.docx ├── ang-pune.pdf ├── logonew.png └── no-image-available.png ├── dashboard.php ├── getsubcat.php ├── includes ├── config.php ├── db.php ├── footer.php ├── header.php └── sidebar.php ├── index.php ├── logout.php ├── profile.php ├── register-complaint.php └── registration.php /GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/GUIDELINES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/README.md -------------------------------------------------------------------------------- /admin/add-category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/add-category.php -------------------------------------------------------------------------------- /admin/assets/css/main-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/css/main-responsive.css -------------------------------------------------------------------------------- /admin/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/css/main.css -------------------------------------------------------------------------------- /admin/assets/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/css/print.css -------------------------------------------------------------------------------- /admin/assets/css/rtl-version.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/css/rtl-version.css -------------------------------------------------------------------------------- /admin/assets/css/theme_dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/css/theme_dark.css -------------------------------------------------------------------------------- /admin/assets/css/theme_green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/css/theme_green.css -------------------------------------------------------------------------------- /admin/assets/css/theme_light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/css/theme_light.css -------------------------------------------------------------------------------- /admin/assets/css/theme_navy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/css/theme_navy.css -------------------------------------------------------------------------------- /admin/assets/fonts/fonts/clip-font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/fonts/fonts/clip-font.eot -------------------------------------------------------------------------------- /admin/assets/fonts/fonts/clip-font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/fonts/fonts/clip-font.svg -------------------------------------------------------------------------------- /admin/assets/fonts/fonts/clip-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/fonts/fonts/clip-font.ttf -------------------------------------------------------------------------------- /admin/assets/fonts/fonts/clip-font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/fonts/fonts/clip-font.woff -------------------------------------------------------------------------------- /admin/assets/fonts/lte-ie7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/fonts/lte-ie7.js -------------------------------------------------------------------------------- /admin/assets/fonts/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/fonts/style.css -------------------------------------------------------------------------------- /admin/assets/js/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/js/charts.js -------------------------------------------------------------------------------- /admin/assets/js/form-calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/js/form-calendar.js -------------------------------------------------------------------------------- /admin/assets/js/form-dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/js/form-dropzone.js -------------------------------------------------------------------------------- /admin/assets/js/form-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/js/form-elements.js -------------------------------------------------------------------------------- /admin/assets/js/form-image-cropping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/js/form-image-cropping.js -------------------------------------------------------------------------------- /admin/assets/js/form-validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/js/form-validation.js -------------------------------------------------------------------------------- /admin/assets/js/form-wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/js/form-wizard.js -------------------------------------------------------------------------------- /admin/assets/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/js/index.js -------------------------------------------------------------------------------- /admin/assets/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/js/login.js -------------------------------------------------------------------------------- /admin/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/js/main.js -------------------------------------------------------------------------------- /admin/assets/js/maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/js/maps.js -------------------------------------------------------------------------------- /admin/assets/js/pages-gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/js/pages-gallery.js -------------------------------------------------------------------------------- /admin/assets/js/pages-user-profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/js/pages-user-profile.js -------------------------------------------------------------------------------- /admin/assets/js/table-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/js/table-data.js -------------------------------------------------------------------------------- /admin/assets/js/ui-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/js/ui-animation.js -------------------------------------------------------------------------------- /admin/assets/js/ui-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/js/ui-buttons.js -------------------------------------------------------------------------------- /admin/assets/js/ui-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/js/ui-elements.js -------------------------------------------------------------------------------- /admin/assets/js/ui-modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/js/ui-modals.js -------------------------------------------------------------------------------- /admin/assets/js/ui-nestable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/js/ui-nestable.js -------------------------------------------------------------------------------- /admin/assets/js/ui-sliders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/js/ui-sliders.js -------------------------------------------------------------------------------- /admin/assets/js/ui-treeview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/js/ui-treeview.js -------------------------------------------------------------------------------- /admin/assets/js/utility-coming-soon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/js/utility-coming-soon.js -------------------------------------------------------------------------------- /admin/assets/js/utility-error404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/js/utility-error404.js -------------------------------------------------------------------------------- /admin/assets/less/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/less/styles.less -------------------------------------------------------------------------------- /admin/assets/plugins/DataTables/examples/examples_support/editable_ajax.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/assets/plugins/Jcrop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/Jcrop/README.md -------------------------------------------------------------------------------- /admin/assets/plugins/Jcrop/css/Jcrop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/Jcrop/css/Jcrop.gif -------------------------------------------------------------------------------- /admin/assets/plugins/Jcrop/demos/crop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/Jcrop/demos/crop.php -------------------------------------------------------------------------------- /admin/assets/plugins/Jcrop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/Jcrop/index.html -------------------------------------------------------------------------------- /admin/assets/plugins/autosize/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/autosize/bower.json -------------------------------------------------------------------------------- /admin/assets/plugins/autosize/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/autosize/demo.html -------------------------------------------------------------------------------- /admin/assets/plugins/autosize/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/autosize/readme.md -------------------------------------------------------------------------------- /admin/assets/plugins/bootstrap-colorpicker/.gitignore: -------------------------------------------------------------------------------- 1 | /nbproject/ -------------------------------------------------------------------------------- /admin/assets/plugins/bootstrap-datepicker/.gitignore: -------------------------------------------------------------------------------- 1 | instrumented/ 2 | tests/coverage.html 3 | docs/_build 4 | -------------------------------------------------------------------------------- /admin/assets/plugins/bootstrap-datepicker/.hgignore: -------------------------------------------------------------------------------- 1 | instrumented/ 2 | tests/coverage.html 3 | docs/_build 4 | -------------------------------------------------------------------------------- /admin/assets/plugins/bootstrap-hover-dropdown/.gitignore: -------------------------------------------------------------------------------- 1 | .htaccess -------------------------------------------------------------------------------- /admin/assets/plugins/bootstrap-paginator/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | 4 | -------------------------------------------------------------------------------- /admin/assets/plugins/bootstrap-switch/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /admin/assets/plugins/bootstrap-timepicker/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "spec/js/libs/" 3 | } 4 | -------------------------------------------------------------------------------- /admin/assets/plugins/bootstrap-timepicker/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | _site 3 | node_modules 4 | _SpecRunner.html 5 | spec/js/libs 6 | -------------------------------------------------------------------------------- /admin/assets/plugins/bootstrap-timepicker/spec/js/helpers/SpecHelper.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/CHANGES.md -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/LICENSE.md -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/README.md -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/config.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/af.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/ar.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/bg.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/bn.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/bs.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/ca.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/cs.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/cy.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/da.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/de.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/el.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/en.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/eo.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/es.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/et.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/eu.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/fa.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/fi.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/fo.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/fr.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/gl.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/gu.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/he.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/hi.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/hr.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/hu.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/id.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/is.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/it.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/ja.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/ka.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/km.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/ko.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/ku.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/lt.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/lv.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/mk.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/mn.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/ms.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/nb.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/nl.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/no.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/pl.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/pt.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/ro.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/ru.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/si.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/sk.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/sl.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/sq.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/sr.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/sv.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/th.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/tr.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/ug.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/uk.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/vi.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/lang/zh.js -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/samples/assets/sample.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Required by tests (dom/document.html). 3 | */ 4 | -------------------------------------------------------------------------------- /admin/assets/plugins/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/ckeditor/styles.js -------------------------------------------------------------------------------- /admin/assets/plugins/colorbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/colorbox/README.md -------------------------------------------------------------------------------- /admin/assets/plugins/colorbox/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/colorbox/bower.json -------------------------------------------------------------------------------- /admin/assets/plugins/colorbox/colorbox.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/colorbox/colorbox.ai -------------------------------------------------------------------------------- /admin/assets/plugins/dropzone/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | components 3 | node_modules 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /admin/assets/plugins/dropzone/.tagconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/dropzone/.tagconfig -------------------------------------------------------------------------------- /admin/assets/plugins/dropzone/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/dropzone/.travis.yml -------------------------------------------------------------------------------- /admin/assets/plugins/dropzone/AMD_footer: -------------------------------------------------------------------------------- 1 | return module.exports; 2 | })); -------------------------------------------------------------------------------- /admin/assets/plugins/dropzone/AMD_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/dropzone/AMD_header -------------------------------------------------------------------------------- /admin/assets/plugins/dropzone/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/dropzone/bower.json -------------------------------------------------------------------------------- /admin/assets/plugins/dropzone/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/dropzone/index.js -------------------------------------------------------------------------------- /admin/assets/plugins/dropzone/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/dropzone/readme.md -------------------------------------------------------------------------------- /admin/assets/plugins/dynatree/doc/sample-empty.json: -------------------------------------------------------------------------------- 1 | [ ] -------------------------------------------------------------------------------- /admin/assets/plugins/dynatree/grunt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/dynatree/grunt.js -------------------------------------------------------------------------------- /admin/assets/plugins/dynatree/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/dynatree/index.html -------------------------------------------------------------------------------- /admin/assets/plugins/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/excanvas.min.js -------------------------------------------------------------------------------- /admin/assets/plugins/flot/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/flot/API.md -------------------------------------------------------------------------------- /admin/assets/plugins/flot/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/flot/CONTRIBUTING.md -------------------------------------------------------------------------------- /admin/assets/plugins/flot/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/flot/FAQ.md -------------------------------------------------------------------------------- /admin/assets/plugins/flot/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/flot/LICENSE.txt -------------------------------------------------------------------------------- /admin/assets/plugins/flot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/flot/Makefile -------------------------------------------------------------------------------- /admin/assets/plugins/flot/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/flot/NEWS.md -------------------------------------------------------------------------------- /admin/assets/plugins/flot/PLUGINS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/flot/PLUGINS.md -------------------------------------------------------------------------------- /admin/assets/plugins/flot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/flot/README.md -------------------------------------------------------------------------------- /admin/assets/plugins/flot/build.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/assets/plugins/flot/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/flot/excanvas.js -------------------------------------------------------------------------------- /admin/assets/plugins/flot/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/flot/excanvas.min.js -------------------------------------------------------------------------------- /admin/assets/plugins/flot/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/flot/jquery.flot.js -------------------------------------------------------------------------------- /admin/assets/plugins/flot/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/flot/jquery.js -------------------------------------------------------------------------------- /admin/assets/plugins/flot/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/flot/jquery.min.js -------------------------------------------------------------------------------- /admin/assets/plugins/gmaps/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /admin/assets/plugins/gmaps/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/gmaps/Gruntfile.js -------------------------------------------------------------------------------- /admin/assets/plugins/gmaps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/gmaps/README.md -------------------------------------------------------------------------------- /admin/assets/plugins/gmaps/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/gmaps/bower.json -------------------------------------------------------------------------------- /admin/assets/plugins/gmaps/gmaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/gmaps/gmaps.js -------------------------------------------------------------------------------- /admin/assets/plugins/gmaps/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/gmaps/package.json -------------------------------------------------------------------------------- /admin/assets/plugins/gmaps/test/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/gmaps/test/style.css -------------------------------------------------------------------------------- /admin/assets/plugins/gritter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/gritter/index.html -------------------------------------------------------------------------------- /admin/assets/plugins/gritter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/gritter/package.json -------------------------------------------------------------------------------- /admin/assets/plugins/iCheck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/iCheck/README.md -------------------------------------------------------------------------------- /admin/assets/plugins/iCheck/skins/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/iCheck/skins/all.css -------------------------------------------------------------------------------- /admin/assets/plugins/jQuery-File-Upload/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | node_modules 4 | -------------------------------------------------------------------------------- /admin/assets/plugins/jQuery-File-Upload/server/gae-go/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /admin/assets/plugins/jQuery-File-Upload/server/gae-python/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /admin/assets/plugins/jQuery-File-Upload/server/node/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /admin/assets/plugins/jQuery-File-Upload/server/node/public/files/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /admin/assets/plugins/jQuery-File-Upload/server/node/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/assets/plugins/jQuery-File-Upload/server/php/files/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !.htaccess 4 | -------------------------------------------------------------------------------- /admin/assets/plugins/jqGrid/src/jqDnR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/jqGrid/src/jqDnR.js -------------------------------------------------------------------------------- /admin/assets/plugins/jquery-cookie/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | .sizecache.json 4 | *.log -------------------------------------------------------------------------------- /admin/assets/plugins/jquery-mockjax/test/test.json: -------------------------------------------------------------------------------- 1 | { "say" : "I'm a json file!" } 2 | -------------------------------------------------------------------------------- /admin/assets/plugins/jquery-mockjax/test/test_jsonp.js: -------------------------------------------------------------------------------- 1 | abcdef123456({ "data" : "JSONP is cool" }); -------------------------------------------------------------------------------- /admin/assets/plugins/jquery-mockjax/test/test_proxy.json: -------------------------------------------------------------------------------- 1 | { "proxy" : true } -------------------------------------------------------------------------------- /admin/assets/plugins/jquery-mockjax/test/test_script.js: -------------------------------------------------------------------------------- 1 | TEST_SCRIPT_VAR = 1; -------------------------------------------------------------------------------- /admin/assets/plugins/jquery.maskedinput/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .idea/* 3 | -------------------------------------------------------------------------------- /admin/assets/plugins/jquery.maskedinput/spec/lib/jasmine-species/version.json: -------------------------------------------------------------------------------- 1 | {"version": "0.8.5b"} -------------------------------------------------------------------------------- /admin/assets/plugins/moment/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/.gitignore -------------------------------------------------------------------------------- /admin/assets/plugins/moment/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/.travis.yml -------------------------------------------------------------------------------- /admin/assets/plugins/moment/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/Gruntfile.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/LICENSE -------------------------------------------------------------------------------- /admin/assets/plugins/moment/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/bower.json -------------------------------------------------------------------------------- /admin/assets/plugins/moment/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/composer.json -------------------------------------------------------------------------------- /admin/assets/plugins/moment/ender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/ender.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/ar-ma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/ar-ma.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/ar.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/bg.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/br.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/ca.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/cs.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/cv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/cv.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/da.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/de.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/el.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/en-ca.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/en-gb.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/eo.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/es.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/et.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/eu.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/fa.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/fi.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/fr-ca.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/fr.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/gl.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/he.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/hi.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/hr.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/hu.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/id.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/is.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/it.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/ja.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/ka.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/ko.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/lt.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/lv.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/ml.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/mr.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/ms-my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/ms-my.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/nb.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/ne.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/nl.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/nn.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/pl.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/pt-br.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/pt.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/ro.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/ru.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/sk.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/sl.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/sq.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/sv.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/th.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/tr.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/tzm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/tzm.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/uk.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/vn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/vn.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/zh-cn.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/lang/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/lang/zh-tw.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/min/langs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/min/langs.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/moment.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/package.js -------------------------------------------------------------------------------- /admin/assets/plugins/moment/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/package.json -------------------------------------------------------------------------------- /admin/assets/plugins/moment/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/readme.md -------------------------------------------------------------------------------- /admin/assets/plugins/moment/tasks/size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/moment/tasks/size.js -------------------------------------------------------------------------------- /admin/assets/plugins/nestable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/nestable/README.md -------------------------------------------------------------------------------- /admin/assets/plugins/nestable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/nestable/index.html -------------------------------------------------------------------------------- /admin/assets/plugins/perfect-scrollbar/.csslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "adjoining-classes": false 3 | } 4 | -------------------------------------------------------------------------------- /admin/assets/plugins/perfect-scrollbar/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /admin/assets/plugins/rainyday/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/rainyday/LICENSE.md -------------------------------------------------------------------------------- /admin/assets/plugins/rainyday/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/rainyday/README.md -------------------------------------------------------------------------------- /admin/assets/plugins/rainyday/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/rainyday/demo.html -------------------------------------------------------------------------------- /admin/assets/plugins/rainyday/rainyday.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/rainyday/rainyday.js -------------------------------------------------------------------------------- /admin/assets/plugins/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/respond.min.js -------------------------------------------------------------------------------- /admin/assets/plugins/select2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/select2/LICENSE -------------------------------------------------------------------------------- /admin/assets/plugins/select2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/select2/README.md -------------------------------------------------------------------------------- /admin/assets/plugins/select2/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/select2/bower.json -------------------------------------------------------------------------------- /admin/assets/plugins/select2/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/select2/release.sh -------------------------------------------------------------------------------- /admin/assets/plugins/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/select2/select2.css -------------------------------------------------------------------------------- /admin/assets/plugins/select2/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/select2/select2.js -------------------------------------------------------------------------------- /admin/assets/plugins/select2/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/select2/select2.png -------------------------------------------------------------------------------- /admin/assets/plugins/summernote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/summernote/README.md -------------------------------------------------------------------------------- /admin/assets/plugins/summernote/bs2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/summernote/bs2.html -------------------------------------------------------------------------------- /admin/assets/plugins/x-editable/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/assets/plugins/x-editable/demo.js -------------------------------------------------------------------------------- /admin/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /admin/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /admin/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/category.php -------------------------------------------------------------------------------- /admin/change-password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/change-password.php -------------------------------------------------------------------------------- /admin/closed-complaint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/closed-complaint.php -------------------------------------------------------------------------------- /admin/college.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/college.php -------------------------------------------------------------------------------- /admin/complaint-details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/complaint-details.php -------------------------------------------------------------------------------- /admin/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/css/theme.css -------------------------------------------------------------------------------- /admin/department.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/department.php -------------------------------------------------------------------------------- /admin/edit-category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/edit-category.php -------------------------------------------------------------------------------- /admin/edit-state.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/edit-state.php -------------------------------------------------------------------------------- /admin/edit-subcategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/edit-subcategory.php -------------------------------------------------------------------------------- /admin/get_subcat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/get_subcat.php -------------------------------------------------------------------------------- /admin/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/images/bg.png -------------------------------------------------------------------------------- /admin/images/icons/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/images/icons/css/font-awesome.css -------------------------------------------------------------------------------- /admin/images/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/images/img.jpg -------------------------------------------------------------------------------- /admin/images/jquery-ui/picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/images/jquery-ui/picker.png -------------------------------------------------------------------------------- /admin/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/images/user.png -------------------------------------------------------------------------------- /admin/include/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/include/config.php -------------------------------------------------------------------------------- /admin/include/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/include/footer.php -------------------------------------------------------------------------------- /admin/include/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/include/header.php -------------------------------------------------------------------------------- /admin/include/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/include/sidebar.php -------------------------------------------------------------------------------- /admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/index.php -------------------------------------------------------------------------------- /admin/inprocess-complaint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/inprocess-complaint.php -------------------------------------------------------------------------------- /admin/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/logout.php -------------------------------------------------------------------------------- /admin/manage-users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/manage-users.php -------------------------------------------------------------------------------- /admin/notprocess-complaint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/notprocess-complaint.php -------------------------------------------------------------------------------- /admin/pending-orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/pending-orders.php -------------------------------------------------------------------------------- /admin/scripts/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/scripts/common.js -------------------------------------------------------------------------------- /admin/scripts/flot/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/scripts/flot/jquery.flot.js -------------------------------------------------------------------------------- /admin/scripts/flot/jquery.flot.pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/scripts/flot/jquery.flot.pie.js -------------------------------------------------------------------------------- /admin/scripts/flot/jquery.flot.resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/scripts/flot/jquery.flot.resize.js -------------------------------------------------------------------------------- /admin/scripts/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/scripts/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /admin/state.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/state.php -------------------------------------------------------------------------------- /admin/subcategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/subcategory.php -------------------------------------------------------------------------------- /admin/university.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/university.php -------------------------------------------------------------------------------- /admin/updatecomplaint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/updatecomplaint.php -------------------------------------------------------------------------------- /admin/user-logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/user-logs.php -------------------------------------------------------------------------------- /admin/userprofile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/admin/userprofile.php -------------------------------------------------------------------------------- /college/add-category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/add-category.php -------------------------------------------------------------------------------- /college/assets/css/main-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/css/main-responsive.css -------------------------------------------------------------------------------- /college/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/css/main.css -------------------------------------------------------------------------------- /college/assets/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/css/print.css -------------------------------------------------------------------------------- /college/assets/css/rtl-version.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/css/rtl-version.css -------------------------------------------------------------------------------- /college/assets/css/theme_dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/css/theme_dark.css -------------------------------------------------------------------------------- /college/assets/css/theme_green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/css/theme_green.css -------------------------------------------------------------------------------- /college/assets/css/theme_light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/css/theme_light.css -------------------------------------------------------------------------------- /college/assets/css/theme_navy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/css/theme_navy.css -------------------------------------------------------------------------------- /college/assets/fonts/fonts/clip-font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/fonts/fonts/clip-font.eot -------------------------------------------------------------------------------- /college/assets/fonts/fonts/clip-font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/fonts/fonts/clip-font.svg -------------------------------------------------------------------------------- /college/assets/fonts/fonts/clip-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/fonts/fonts/clip-font.ttf -------------------------------------------------------------------------------- /college/assets/fonts/fonts/clip-font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/fonts/fonts/clip-font.woff -------------------------------------------------------------------------------- /college/assets/fonts/lte-ie7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/fonts/lte-ie7.js -------------------------------------------------------------------------------- /college/assets/fonts/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/fonts/style.css -------------------------------------------------------------------------------- /college/assets/js/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/js/charts.js -------------------------------------------------------------------------------- /college/assets/js/form-calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/js/form-calendar.js -------------------------------------------------------------------------------- /college/assets/js/form-dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/js/form-dropzone.js -------------------------------------------------------------------------------- /college/assets/js/form-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/js/form-elements.js -------------------------------------------------------------------------------- /college/assets/js/form-image-cropping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/js/form-image-cropping.js -------------------------------------------------------------------------------- /college/assets/js/form-validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/js/form-validation.js -------------------------------------------------------------------------------- /college/assets/js/form-wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/js/form-wizard.js -------------------------------------------------------------------------------- /college/assets/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/js/index.js -------------------------------------------------------------------------------- /college/assets/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/js/login.js -------------------------------------------------------------------------------- /college/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/js/main.js -------------------------------------------------------------------------------- /college/assets/js/maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/js/maps.js -------------------------------------------------------------------------------- /college/assets/js/pages-gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/js/pages-gallery.js -------------------------------------------------------------------------------- /college/assets/js/pages-user-profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/js/pages-user-profile.js -------------------------------------------------------------------------------- /college/assets/js/table-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/js/table-data.js -------------------------------------------------------------------------------- /college/assets/js/ui-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/js/ui-animation.js -------------------------------------------------------------------------------- /college/assets/js/ui-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/js/ui-buttons.js -------------------------------------------------------------------------------- /college/assets/js/ui-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/js/ui-elements.js -------------------------------------------------------------------------------- /college/assets/js/ui-modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/js/ui-modals.js -------------------------------------------------------------------------------- /college/assets/js/ui-nestable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/js/ui-nestable.js -------------------------------------------------------------------------------- /college/assets/js/ui-sliders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/js/ui-sliders.js -------------------------------------------------------------------------------- /college/assets/js/ui-treeview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/js/ui-treeview.js -------------------------------------------------------------------------------- /college/assets/js/utility-coming-soon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/js/utility-coming-soon.js -------------------------------------------------------------------------------- /college/assets/js/utility-error404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/js/utility-error404.js -------------------------------------------------------------------------------- /college/assets/less/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/less/styles.less -------------------------------------------------------------------------------- /college/assets/plugins/DataTables/examples/examples_support/editable_ajax.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /college/assets/plugins/Jcrop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/Jcrop/README.md -------------------------------------------------------------------------------- /college/assets/plugins/Jcrop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/Jcrop/index.html -------------------------------------------------------------------------------- /college/assets/plugins/autosize/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/autosize/demo.html -------------------------------------------------------------------------------- /college/assets/plugins/autosize/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/autosize/readme.md -------------------------------------------------------------------------------- /college/assets/plugins/bootstrap-colorpicker/.gitignore: -------------------------------------------------------------------------------- 1 | /nbproject/ -------------------------------------------------------------------------------- /college/assets/plugins/bootstrap-datepicker/.gitignore: -------------------------------------------------------------------------------- 1 | instrumented/ 2 | tests/coverage.html 3 | docs/_build 4 | -------------------------------------------------------------------------------- /college/assets/plugins/bootstrap-datepicker/.hgignore: -------------------------------------------------------------------------------- 1 | instrumented/ 2 | tests/coverage.html 3 | docs/_build 4 | -------------------------------------------------------------------------------- /college/assets/plugins/bootstrap-hover-dropdown/.gitignore: -------------------------------------------------------------------------------- 1 | .htaccess -------------------------------------------------------------------------------- /college/assets/plugins/bootstrap-paginator/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | 4 | -------------------------------------------------------------------------------- /college/assets/plugins/bootstrap-switch/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /college/assets/plugins/bootstrap-timepicker/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "spec/js/libs/" 3 | } 4 | -------------------------------------------------------------------------------- /college/assets/plugins/bootstrap-timepicker/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | _site 3 | node_modules 4 | _SpecRunner.html 5 | spec/js/libs 6 | -------------------------------------------------------------------------------- /college/assets/plugins/bootstrap-timepicker/spec/js/helpers/SpecHelper.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /college/assets/plugins/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/ckeditor/README.md -------------------------------------------------------------------------------- /college/assets/plugins/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/ckeditor/config.js -------------------------------------------------------------------------------- /college/assets/plugins/ckeditor/samples/assets/sample.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Required by tests (dom/document.html). 3 | */ 4 | -------------------------------------------------------------------------------- /college/assets/plugins/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/ckeditor/styles.js -------------------------------------------------------------------------------- /college/assets/plugins/colorbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/colorbox/README.md -------------------------------------------------------------------------------- /college/assets/plugins/dropzone/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | components 3 | node_modules 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /college/assets/plugins/dropzone/AMD_footer: -------------------------------------------------------------------------------- 1 | return module.exports; 2 | })); -------------------------------------------------------------------------------- /college/assets/plugins/dropzone/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/dropzone/index.js -------------------------------------------------------------------------------- /college/assets/plugins/dropzone/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/dropzone/readme.md -------------------------------------------------------------------------------- /college/assets/plugins/dynatree/doc/sample-empty.json: -------------------------------------------------------------------------------- 1 | [ ] -------------------------------------------------------------------------------- /college/assets/plugins/dynatree/grunt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/dynatree/grunt.js -------------------------------------------------------------------------------- /college/assets/plugins/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/excanvas.min.js -------------------------------------------------------------------------------- /college/assets/plugins/flot/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/flot/API.md -------------------------------------------------------------------------------- /college/assets/plugins/flot/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/flot/FAQ.md -------------------------------------------------------------------------------- /college/assets/plugins/flot/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/flot/LICENSE.txt -------------------------------------------------------------------------------- /college/assets/plugins/flot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/flot/Makefile -------------------------------------------------------------------------------- /college/assets/plugins/flot/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/flot/NEWS.md -------------------------------------------------------------------------------- /college/assets/plugins/flot/PLUGINS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/flot/PLUGINS.md -------------------------------------------------------------------------------- /college/assets/plugins/flot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/flot/README.md -------------------------------------------------------------------------------- /college/assets/plugins/flot/build.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /college/assets/plugins/flot/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/flot/excanvas.js -------------------------------------------------------------------------------- /college/assets/plugins/flot/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/flot/jquery.js -------------------------------------------------------------------------------- /college/assets/plugins/flot/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/flot/jquery.min.js -------------------------------------------------------------------------------- /college/assets/plugins/gmaps/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /college/assets/plugins/gmaps/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/gmaps/Gruntfile.js -------------------------------------------------------------------------------- /college/assets/plugins/gmaps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/gmaps/README.md -------------------------------------------------------------------------------- /college/assets/plugins/gmaps/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/gmaps/bower.json -------------------------------------------------------------------------------- /college/assets/plugins/gmaps/gmaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/gmaps/gmaps.js -------------------------------------------------------------------------------- /college/assets/plugins/gmaps/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/gmaps/package.json -------------------------------------------------------------------------------- /college/assets/plugins/gritter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/gritter/index.html -------------------------------------------------------------------------------- /college/assets/plugins/iCheck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/iCheck/README.md -------------------------------------------------------------------------------- /college/assets/plugins/jQuery-File-Upload/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | node_modules 4 | -------------------------------------------------------------------------------- /college/assets/plugins/jQuery-File-Upload/server/gae-go/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /college/assets/plugins/jQuery-File-Upload/server/gae-python/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /college/assets/plugins/jQuery-File-Upload/server/node/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /college/assets/plugins/jQuery-File-Upload/server/node/public/files/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /college/assets/plugins/jQuery-File-Upload/server/node/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /college/assets/plugins/jQuery-File-Upload/server/php/files/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !.htaccess 4 | -------------------------------------------------------------------------------- /college/assets/plugins/jquery-cookie/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | .sizecache.json 4 | *.log -------------------------------------------------------------------------------- /college/assets/plugins/jquery-mockjax/test/test.json: -------------------------------------------------------------------------------- 1 | { "say" : "I'm a json file!" } 2 | -------------------------------------------------------------------------------- /college/assets/plugins/jquery-mockjax/test/test_jsonp.js: -------------------------------------------------------------------------------- 1 | abcdef123456({ "data" : "JSONP is cool" }); -------------------------------------------------------------------------------- /college/assets/plugins/jquery-mockjax/test/test_proxy.json: -------------------------------------------------------------------------------- 1 | { "proxy" : true } -------------------------------------------------------------------------------- /college/assets/plugins/jquery-mockjax/test/test_script.js: -------------------------------------------------------------------------------- 1 | TEST_SCRIPT_VAR = 1; -------------------------------------------------------------------------------- /college/assets/plugins/jquery.maskedinput/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .idea/* 3 | -------------------------------------------------------------------------------- /college/assets/plugins/jquery.maskedinput/spec/lib/jasmine-species/version.json: -------------------------------------------------------------------------------- 1 | {"version": "0.8.5b"} -------------------------------------------------------------------------------- /college/assets/plugins/moment/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/.gitignore -------------------------------------------------------------------------------- /college/assets/plugins/moment/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/.travis.yml -------------------------------------------------------------------------------- /college/assets/plugins/moment/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/LICENSE -------------------------------------------------------------------------------- /college/assets/plugins/moment/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/bower.json -------------------------------------------------------------------------------- /college/assets/plugins/moment/ender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/ender.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/ar.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/bg.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/br.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/ca.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/cs.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/cv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/cv.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/da.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/de.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/el.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/eo.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/es.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/et.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/eu.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/fa.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/fi.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/fr.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/gl.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/he.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/hi.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/hr.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/hu.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/id.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/is.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/it.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/ja.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/ka.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/ko.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/lt.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/lv.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/ml.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/mr.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/lang/nb.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/moment.js -------------------------------------------------------------------------------- /college/assets/plugins/moment/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/moment/readme.md -------------------------------------------------------------------------------- /college/assets/plugins/perfect-scrollbar/.csslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "adjoining-classes": false 3 | } 4 | -------------------------------------------------------------------------------- /college/assets/plugins/perfect-scrollbar/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /college/assets/plugins/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/respond.min.js -------------------------------------------------------------------------------- /college/assets/plugins/select2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/assets/plugins/select2/LICENSE -------------------------------------------------------------------------------- /college/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /college/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /college/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/category.php -------------------------------------------------------------------------------- /college/change-password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/change-password.php -------------------------------------------------------------------------------- /college/closed-complaint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/closed-complaint.php -------------------------------------------------------------------------------- /college/college.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/college.php -------------------------------------------------------------------------------- /college/complaint-details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/complaint-details.php -------------------------------------------------------------------------------- /college/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/css/theme.css -------------------------------------------------------------------------------- /college/department.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/department.php -------------------------------------------------------------------------------- /college/edit-category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/edit-category.php -------------------------------------------------------------------------------- /college/edit-state.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/edit-state.php -------------------------------------------------------------------------------- /college/edit-subcategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/edit-subcategory.php -------------------------------------------------------------------------------- /college/get_subcat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/get_subcat.php -------------------------------------------------------------------------------- /college/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/images/bg.png -------------------------------------------------------------------------------- /college/images/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/images/img.jpg -------------------------------------------------------------------------------- /college/images/jquery-ui/picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/images/jquery-ui/picker.png -------------------------------------------------------------------------------- /college/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/images/user.png -------------------------------------------------------------------------------- /college/include/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/include/config.php -------------------------------------------------------------------------------- /college/include/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/include/footer.php -------------------------------------------------------------------------------- /college/include/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/include/header.php -------------------------------------------------------------------------------- /college/include/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/include/sidebar.php -------------------------------------------------------------------------------- /college/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/index.php -------------------------------------------------------------------------------- /college/inprocess-complaint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/inprocess-complaint.php -------------------------------------------------------------------------------- /college/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/logout.php -------------------------------------------------------------------------------- /college/manage-users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/manage-users.php -------------------------------------------------------------------------------- /college/notprocess-complaint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/notprocess-complaint.php -------------------------------------------------------------------------------- /college/pending-orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/pending-orders.php -------------------------------------------------------------------------------- /college/scripts/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/scripts/common.js -------------------------------------------------------------------------------- /college/scripts/flot/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/scripts/flot/jquery.flot.js -------------------------------------------------------------------------------- /college/scripts/flot/jquery.flot.pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/scripts/flot/jquery.flot.pie.js -------------------------------------------------------------------------------- /college/scripts/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/scripts/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /college/state.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/state.php -------------------------------------------------------------------------------- /college/subcategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/subcategory.php -------------------------------------------------------------------------------- /college/university.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/university.php -------------------------------------------------------------------------------- /college/updatecomplaint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/updatecomplaint.php -------------------------------------------------------------------------------- /college/user-logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/user-logs.php -------------------------------------------------------------------------------- /college/userprofile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/college/userprofile.php -------------------------------------------------------------------------------- /css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/css/bootstrap.css -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/half-slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/css/half-slider.css -------------------------------------------------------------------------------- /department/add-category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/add-category.php -------------------------------------------------------------------------------- /department/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/css/main.css -------------------------------------------------------------------------------- /department/assets/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/css/print.css -------------------------------------------------------------------------------- /department/assets/css/rtl-version.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/css/rtl-version.css -------------------------------------------------------------------------------- /department/assets/css/theme_dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/css/theme_dark.css -------------------------------------------------------------------------------- /department/assets/css/theme_green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/css/theme_green.css -------------------------------------------------------------------------------- /department/assets/css/theme_light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/css/theme_light.css -------------------------------------------------------------------------------- /department/assets/css/theme_navy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/css/theme_navy.css -------------------------------------------------------------------------------- /department/assets/fonts/lte-ie7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/fonts/lte-ie7.js -------------------------------------------------------------------------------- /department/assets/fonts/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/fonts/style.css -------------------------------------------------------------------------------- /department/assets/js/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/js/charts.js -------------------------------------------------------------------------------- /department/assets/js/form-calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/js/form-calendar.js -------------------------------------------------------------------------------- /department/assets/js/form-dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/js/form-dropzone.js -------------------------------------------------------------------------------- /department/assets/js/form-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/js/form-elements.js -------------------------------------------------------------------------------- /department/assets/js/form-validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/js/form-validation.js -------------------------------------------------------------------------------- /department/assets/js/form-wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/js/form-wizard.js -------------------------------------------------------------------------------- /department/assets/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/js/index.js -------------------------------------------------------------------------------- /department/assets/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/js/login.js -------------------------------------------------------------------------------- /department/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/js/main.js -------------------------------------------------------------------------------- /department/assets/js/maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/js/maps.js -------------------------------------------------------------------------------- /department/assets/js/pages-gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/js/pages-gallery.js -------------------------------------------------------------------------------- /department/assets/js/table-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/js/table-data.js -------------------------------------------------------------------------------- /department/assets/js/ui-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/js/ui-animation.js -------------------------------------------------------------------------------- /department/assets/js/ui-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/js/ui-buttons.js -------------------------------------------------------------------------------- /department/assets/js/ui-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/js/ui-elements.js -------------------------------------------------------------------------------- /department/assets/js/ui-modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/js/ui-modals.js -------------------------------------------------------------------------------- /department/assets/js/ui-nestable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/js/ui-nestable.js -------------------------------------------------------------------------------- /department/assets/js/ui-sliders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/js/ui-sliders.js -------------------------------------------------------------------------------- /department/assets/js/ui-treeview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/js/ui-treeview.js -------------------------------------------------------------------------------- /department/assets/less/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/less/styles.less -------------------------------------------------------------------------------- /department/assets/plugins/DataTables/examples/examples_support/editable_ajax.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /department/assets/plugins/bootstrap-colorpicker/.gitignore: -------------------------------------------------------------------------------- 1 | /nbproject/ -------------------------------------------------------------------------------- /department/assets/plugins/bootstrap-datepicker/.gitignore: -------------------------------------------------------------------------------- 1 | instrumented/ 2 | tests/coverage.html 3 | docs/_build 4 | -------------------------------------------------------------------------------- /department/assets/plugins/bootstrap-datepicker/.hgignore: -------------------------------------------------------------------------------- 1 | instrumented/ 2 | tests/coverage.html 3 | docs/_build 4 | -------------------------------------------------------------------------------- /department/assets/plugins/bootstrap-hover-dropdown/.gitignore: -------------------------------------------------------------------------------- 1 | .htaccess -------------------------------------------------------------------------------- /department/assets/plugins/bootstrap-paginator/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | 4 | -------------------------------------------------------------------------------- /department/assets/plugins/bootstrap-switch/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /department/assets/plugins/bootstrap-timepicker/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "spec/js/libs/" 3 | } 4 | -------------------------------------------------------------------------------- /department/assets/plugins/bootstrap-timepicker/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | _site 3 | node_modules 4 | _SpecRunner.html 5 | spec/js/libs 6 | -------------------------------------------------------------------------------- /department/assets/plugins/bootstrap-timepicker/spec/js/helpers/SpecHelper.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /department/assets/plugins/ckeditor/samples/assets/sample.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Required by tests (dom/document.html). 3 | */ 4 | -------------------------------------------------------------------------------- /department/assets/plugins/dropzone/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | components 3 | node_modules 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /department/assets/plugins/dropzone/AMD_footer: -------------------------------------------------------------------------------- 1 | return module.exports; 2 | })); -------------------------------------------------------------------------------- /department/assets/plugins/dynatree/doc/sample-empty.json: -------------------------------------------------------------------------------- 1 | [ ] -------------------------------------------------------------------------------- /department/assets/plugins/flot/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/plugins/flot/API.md -------------------------------------------------------------------------------- /department/assets/plugins/flot/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/plugins/flot/FAQ.md -------------------------------------------------------------------------------- /department/assets/plugins/flot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/plugins/flot/Makefile -------------------------------------------------------------------------------- /department/assets/plugins/flot/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/assets/plugins/flot/NEWS.md -------------------------------------------------------------------------------- /department/assets/plugins/flot/build.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /department/assets/plugins/gmaps/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /department/assets/plugins/jQuery-File-Upload/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | node_modules 4 | -------------------------------------------------------------------------------- /department/assets/plugins/jQuery-File-Upload/server/gae-go/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /department/assets/plugins/jQuery-File-Upload/server/gae-python/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /department/assets/plugins/jQuery-File-Upload/server/node/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /department/assets/plugins/jQuery-File-Upload/server/node/public/files/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /department/assets/plugins/jQuery-File-Upload/server/node/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /department/assets/plugins/jQuery-File-Upload/server/php/files/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !.htaccess 4 | -------------------------------------------------------------------------------- /department/assets/plugins/jquery-cookie/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | .sizecache.json 4 | *.log -------------------------------------------------------------------------------- /department/assets/plugins/jquery-mockjax/test/test.json: -------------------------------------------------------------------------------- 1 | { "say" : "I'm a json file!" } 2 | -------------------------------------------------------------------------------- /department/assets/plugins/jquery-mockjax/test/test_jsonp.js: -------------------------------------------------------------------------------- 1 | abcdef123456({ "data" : "JSONP is cool" }); -------------------------------------------------------------------------------- /department/assets/plugins/jquery-mockjax/test/test_proxy.json: -------------------------------------------------------------------------------- 1 | { "proxy" : true } -------------------------------------------------------------------------------- /department/assets/plugins/jquery-mockjax/test/test_script.js: -------------------------------------------------------------------------------- 1 | TEST_SCRIPT_VAR = 1; -------------------------------------------------------------------------------- /department/assets/plugins/jquery.maskedinput/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .idea/* 3 | -------------------------------------------------------------------------------- /department/assets/plugins/jquery.maskedinput/spec/lib/jasmine-species/version.json: -------------------------------------------------------------------------------- 1 | {"version": "0.8.5b"} -------------------------------------------------------------------------------- /department/assets/plugins/perfect-scrollbar/.csslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "adjoining-classes": false 3 | } 4 | -------------------------------------------------------------------------------- /department/assets/plugins/perfect-scrollbar/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /department/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/category.php -------------------------------------------------------------------------------- /department/change-password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/change-password.php -------------------------------------------------------------------------------- /department/closed-complaint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/closed-complaint.php -------------------------------------------------------------------------------- /department/college.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/college.php -------------------------------------------------------------------------------- /department/complaint-details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/complaint-details.php -------------------------------------------------------------------------------- /department/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/css/theme.css -------------------------------------------------------------------------------- /department/department.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/department.php -------------------------------------------------------------------------------- /department/edit-category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/edit-category.php -------------------------------------------------------------------------------- /department/edit-state.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/edit-state.php -------------------------------------------------------------------------------- /department/edit-subcategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/edit-subcategory.php -------------------------------------------------------------------------------- /department/get_subcat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/get_subcat.php -------------------------------------------------------------------------------- /department/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/images/bg.png -------------------------------------------------------------------------------- /department/images/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/images/img.jpg -------------------------------------------------------------------------------- /department/images/jquery-ui/picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/images/jquery-ui/picker.png -------------------------------------------------------------------------------- /department/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/images/user.png -------------------------------------------------------------------------------- /department/include/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/include/config.php -------------------------------------------------------------------------------- /department/include/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/include/footer.php -------------------------------------------------------------------------------- /department/include/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/include/header.php -------------------------------------------------------------------------------- /department/include/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/include/sidebar.php -------------------------------------------------------------------------------- /department/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/index.php -------------------------------------------------------------------------------- /department/inprocess-complaint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/inprocess-complaint.php -------------------------------------------------------------------------------- /department/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/logout.php -------------------------------------------------------------------------------- /department/manage-users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/manage-users.php -------------------------------------------------------------------------------- /department/notprocess-complaint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/notprocess-complaint.php -------------------------------------------------------------------------------- /department/pending-orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/pending-orders.php -------------------------------------------------------------------------------- /department/scripts/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/scripts/common.js -------------------------------------------------------------------------------- /department/scripts/flot/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/scripts/flot/jquery.flot.js -------------------------------------------------------------------------------- /department/scripts/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/scripts/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /department/state.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/state.php -------------------------------------------------------------------------------- /department/subcategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/subcategory.php -------------------------------------------------------------------------------- /department/university.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/university.php -------------------------------------------------------------------------------- /department/updatecomplaint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/updatecomplaint.php -------------------------------------------------------------------------------- /department/user-logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/user-logs.php -------------------------------------------------------------------------------- /department/userprofile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/department/userprofile.php -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/gitattributes -------------------------------------------------------------------------------- /img/c10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/img/c10.jpg -------------------------------------------------------------------------------- /img/c2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/img/c2.jpg -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/index.php -------------------------------------------------------------------------------- /js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/js/bootstrap.js -------------------------------------------------------------------------------- /js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/js/bootstrap.min.js -------------------------------------------------------------------------------- /js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/js/jquery.js -------------------------------------------------------------------------------- /media/admin-pswd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/admin-pswd.jpg -------------------------------------------------------------------------------- /media/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/banner.png -------------------------------------------------------------------------------- /media/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/c.png -------------------------------------------------------------------------------- /media/category-management.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/category-management.jpg -------------------------------------------------------------------------------- /media/cc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/cc.jpg -------------------------------------------------------------------------------- /media/closed-status.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/closed-status.jpg -------------------------------------------------------------------------------- /media/cms-portal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/cms-portal.jpg -------------------------------------------------------------------------------- /media/comp-details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/comp-details.jpg -------------------------------------------------------------------------------- /media/comp-history.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/comp-history.jpg -------------------------------------------------------------------------------- /media/comp-overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/comp-overview.jpg -------------------------------------------------------------------------------- /media/comp-records.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/comp-records.jpg -------------------------------------------------------------------------------- /media/comp-status.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/comp-status.jpg -------------------------------------------------------------------------------- /media/edu-grievance.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/edu-grievance.pptx -------------------------------------------------------------------------------- /media/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/index.html -------------------------------------------------------------------------------- /media/main-portal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/main-portal.jpg -------------------------------------------------------------------------------- /media/manage-users.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/manage-users.jpg -------------------------------------------------------------------------------- /media/presentation/sgs_ppt_final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/presentation/sgs_ppt_final.pdf -------------------------------------------------------------------------------- /media/profile-info.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/profile-info.jpg -------------------------------------------------------------------------------- /media/publication.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/publication.pdf -------------------------------------------------------------------------------- /media/reset-pswd-popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/reset-pswd-popup.jpg -------------------------------------------------------------------------------- /media/s.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/s.PNG -------------------------------------------------------------------------------- /media/sm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/sm.js -------------------------------------------------------------------------------- /media/subcategories.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/subcategories.jpg -------------------------------------------------------------------------------- /media/submit-confirmation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/submit-confirmation.jpg -------------------------------------------------------------------------------- /media/university-config.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/university-config.jpg -------------------------------------------------------------------------------- /media/user-login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/user-login.jpg -------------------------------------------------------------------------------- /media/user-reg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/user-reg.jpg -------------------------------------------------------------------------------- /media/userlog-overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/media/userlog-overview.jpg -------------------------------------------------------------------------------- /sql/cms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/sql/cms.sql -------------------------------------------------------------------------------- /university/add-category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/add-category.php -------------------------------------------------------------------------------- /university/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/css/main.css -------------------------------------------------------------------------------- /university/assets/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/css/print.css -------------------------------------------------------------------------------- /university/assets/css/rtl-version.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/css/rtl-version.css -------------------------------------------------------------------------------- /university/assets/css/theme_dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/css/theme_dark.css -------------------------------------------------------------------------------- /university/assets/css/theme_green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/css/theme_green.css -------------------------------------------------------------------------------- /university/assets/css/theme_light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/css/theme_light.css -------------------------------------------------------------------------------- /university/assets/css/theme_navy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/css/theme_navy.css -------------------------------------------------------------------------------- /university/assets/fonts/lte-ie7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/fonts/lte-ie7.js -------------------------------------------------------------------------------- /university/assets/fonts/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/fonts/style.css -------------------------------------------------------------------------------- /university/assets/js/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/js/charts.js -------------------------------------------------------------------------------- /university/assets/js/form-calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/js/form-calendar.js -------------------------------------------------------------------------------- /university/assets/js/form-dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/js/form-dropzone.js -------------------------------------------------------------------------------- /university/assets/js/form-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/js/form-elements.js -------------------------------------------------------------------------------- /university/assets/js/form-validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/js/form-validation.js -------------------------------------------------------------------------------- /university/assets/js/form-wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/js/form-wizard.js -------------------------------------------------------------------------------- /university/assets/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/js/index.js -------------------------------------------------------------------------------- /university/assets/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/js/login.js -------------------------------------------------------------------------------- /university/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/js/main.js -------------------------------------------------------------------------------- /university/assets/js/maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/js/maps.js -------------------------------------------------------------------------------- /university/assets/js/pages-gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/js/pages-gallery.js -------------------------------------------------------------------------------- /university/assets/js/table-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/js/table-data.js -------------------------------------------------------------------------------- /university/assets/js/ui-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/js/ui-animation.js -------------------------------------------------------------------------------- /university/assets/js/ui-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/js/ui-buttons.js -------------------------------------------------------------------------------- /university/assets/js/ui-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/js/ui-elements.js -------------------------------------------------------------------------------- /university/assets/js/ui-modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/js/ui-modals.js -------------------------------------------------------------------------------- /university/assets/js/ui-nestable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/js/ui-nestable.js -------------------------------------------------------------------------------- /university/assets/js/ui-sliders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/js/ui-sliders.js -------------------------------------------------------------------------------- /university/assets/js/ui-treeview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/js/ui-treeview.js -------------------------------------------------------------------------------- /university/assets/less/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/less/styles.less -------------------------------------------------------------------------------- /university/assets/plugins/DataTables/examples/examples_support/editable_ajax.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /university/assets/plugins/bootstrap-colorpicker/.gitignore: -------------------------------------------------------------------------------- 1 | /nbproject/ -------------------------------------------------------------------------------- /university/assets/plugins/bootstrap-datepicker/.gitignore: -------------------------------------------------------------------------------- 1 | instrumented/ 2 | tests/coverage.html 3 | docs/_build 4 | -------------------------------------------------------------------------------- /university/assets/plugins/bootstrap-datepicker/.hgignore: -------------------------------------------------------------------------------- 1 | instrumented/ 2 | tests/coverage.html 3 | docs/_build 4 | -------------------------------------------------------------------------------- /university/assets/plugins/bootstrap-hover-dropdown/.gitignore: -------------------------------------------------------------------------------- 1 | .htaccess -------------------------------------------------------------------------------- /university/assets/plugins/bootstrap-paginator/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | 4 | -------------------------------------------------------------------------------- /university/assets/plugins/bootstrap-switch/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /university/assets/plugins/bootstrap-timepicker/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "spec/js/libs/" 3 | } 4 | -------------------------------------------------------------------------------- /university/assets/plugins/bootstrap-timepicker/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | _site 3 | node_modules 4 | _SpecRunner.html 5 | spec/js/libs 6 | -------------------------------------------------------------------------------- /university/assets/plugins/bootstrap-timepicker/spec/js/helpers/SpecHelper.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /university/assets/plugins/ckeditor/samples/assets/sample.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Required by tests (dom/document.html). 3 | */ 4 | -------------------------------------------------------------------------------- /university/assets/plugins/dropzone/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | components 3 | node_modules 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /university/assets/plugins/dropzone/AMD_footer: -------------------------------------------------------------------------------- 1 | return module.exports; 2 | })); -------------------------------------------------------------------------------- /university/assets/plugins/dynatree/doc/sample-empty.json: -------------------------------------------------------------------------------- 1 | [ ] -------------------------------------------------------------------------------- /university/assets/plugins/flot/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/plugins/flot/API.md -------------------------------------------------------------------------------- /university/assets/plugins/flot/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/plugins/flot/FAQ.md -------------------------------------------------------------------------------- /university/assets/plugins/flot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/plugins/flot/Makefile -------------------------------------------------------------------------------- /university/assets/plugins/flot/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/assets/plugins/flot/NEWS.md -------------------------------------------------------------------------------- /university/assets/plugins/flot/build.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /university/assets/plugins/gmaps/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /university/assets/plugins/jQuery-File-Upload/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | node_modules 4 | -------------------------------------------------------------------------------- /university/assets/plugins/jQuery-File-Upload/server/gae-go/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /university/assets/plugins/jQuery-File-Upload/server/gae-python/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /university/assets/plugins/jQuery-File-Upload/server/node/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /university/assets/plugins/jQuery-File-Upload/server/node/public/files/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /university/assets/plugins/jQuery-File-Upload/server/node/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /university/assets/plugins/jQuery-File-Upload/server/php/files/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !.htaccess 4 | -------------------------------------------------------------------------------- /university/assets/plugins/jquery-cookie/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | .sizecache.json 4 | *.log -------------------------------------------------------------------------------- /university/assets/plugins/jquery-mockjax/test/test.json: -------------------------------------------------------------------------------- 1 | { "say" : "I'm a json file!" } 2 | -------------------------------------------------------------------------------- /university/assets/plugins/jquery-mockjax/test/test_jsonp.js: -------------------------------------------------------------------------------- 1 | abcdef123456({ "data" : "JSONP is cool" }); -------------------------------------------------------------------------------- /university/assets/plugins/jquery-mockjax/test/test_proxy.json: -------------------------------------------------------------------------------- 1 | { "proxy" : true } -------------------------------------------------------------------------------- /university/assets/plugins/jquery-mockjax/test/test_script.js: -------------------------------------------------------------------------------- 1 | TEST_SCRIPT_VAR = 1; -------------------------------------------------------------------------------- /university/assets/plugins/jquery.maskedinput/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .idea/* 3 | -------------------------------------------------------------------------------- /university/assets/plugins/jquery.maskedinput/spec/lib/jasmine-species/version.json: -------------------------------------------------------------------------------- 1 | {"version": "0.8.5b"} -------------------------------------------------------------------------------- /university/assets/plugins/perfect-scrollbar/.csslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "adjoining-classes": false 3 | } 4 | -------------------------------------------------------------------------------- /university/assets/plugins/perfect-scrollbar/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /university/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/category.php -------------------------------------------------------------------------------- /university/change-password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/change-password.php -------------------------------------------------------------------------------- /university/closed-complaint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/closed-complaint.php -------------------------------------------------------------------------------- /university/college.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/college.php -------------------------------------------------------------------------------- /university/complaint-details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/complaint-details.php -------------------------------------------------------------------------------- /university/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/css/theme.css -------------------------------------------------------------------------------- /university/department.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/department.php -------------------------------------------------------------------------------- /university/edit-category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/edit-category.php -------------------------------------------------------------------------------- /university/edit-state.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/edit-state.php -------------------------------------------------------------------------------- /university/edit-subcategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/edit-subcategory.php -------------------------------------------------------------------------------- /university/get_subcat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/get_subcat.php -------------------------------------------------------------------------------- /university/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/images/bg.png -------------------------------------------------------------------------------- /university/images/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/images/img.jpg -------------------------------------------------------------------------------- /university/images/jquery-ui/picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/images/jquery-ui/picker.png -------------------------------------------------------------------------------- /university/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/images/user.png -------------------------------------------------------------------------------- /university/include/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/include/config.php -------------------------------------------------------------------------------- /university/include/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/include/footer.php -------------------------------------------------------------------------------- /university/include/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/include/header.php -------------------------------------------------------------------------------- /university/include/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/include/sidebar.php -------------------------------------------------------------------------------- /university/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/index.php -------------------------------------------------------------------------------- /university/inprocess-complaint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/inprocess-complaint.php -------------------------------------------------------------------------------- /university/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/logout.php -------------------------------------------------------------------------------- /university/manage-users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/manage-users.php -------------------------------------------------------------------------------- /university/notprocess-complaint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/notprocess-complaint.php -------------------------------------------------------------------------------- /university/pending-orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/pending-orders.php -------------------------------------------------------------------------------- /university/scripts/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/scripts/common.js -------------------------------------------------------------------------------- /university/scripts/flot/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/scripts/flot/jquery.flot.js -------------------------------------------------------------------------------- /university/scripts/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/scripts/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /university/state.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/state.php -------------------------------------------------------------------------------- /university/subcategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/subcategory.php -------------------------------------------------------------------------------- /university/university.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/university.php -------------------------------------------------------------------------------- /university/updatecomplaint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/updatecomplaint.php -------------------------------------------------------------------------------- /university/user-logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/user-logs.php -------------------------------------------------------------------------------- /university/userprofile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/university/userprofile.php -------------------------------------------------------------------------------- /users/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/.DS_Store -------------------------------------------------------------------------------- /users/assets/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/css/.DS_Store -------------------------------------------------------------------------------- /users/assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/css/bootstrap.css -------------------------------------------------------------------------------- /users/assets/css/style-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/css/style-responsive.css -------------------------------------------------------------------------------- /users/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/css/style.css -------------------------------------------------------------------------------- /users/assets/css/table-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/css/table-responsive.css -------------------------------------------------------------------------------- /users/assets/css/to-do.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/css/to-do.css -------------------------------------------------------------------------------- /users/assets/css/zabuto_calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/css/zabuto_calendar.css -------------------------------------------------------------------------------- /users/assets/font-awesome/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/font-awesome/.DS_Store -------------------------------------------------------------------------------- /users/assets/font-awesome/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/font-awesome/css/.DS_Store -------------------------------------------------------------------------------- /users/assets/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/fonts/.DS_Store -------------------------------------------------------------------------------- /users/assets/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/img/.DS_Store -------------------------------------------------------------------------------- /users/assets/img/checkbox-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/img/checkbox-gray.png -------------------------------------------------------------------------------- /users/assets/img/login-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/img/login-bg.jpg -------------------------------------------------------------------------------- /users/assets/img/radio-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/img/radio-gray.png -------------------------------------------------------------------------------- /users/assets/img/ui-sam.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/img/ui-sam.jpg -------------------------------------------------------------------------------- /users/assets/img/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/img/zoom.png -------------------------------------------------------------------------------- /users/assets/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/.DS_Store -------------------------------------------------------------------------------- /users/assets/js/bootstrap-switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/bootstrap-switch.js -------------------------------------------------------------------------------- /users/assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /users/assets/js/calendar-conf-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/calendar-conf-events.js -------------------------------------------------------------------------------- /users/assets/js/chart-master/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/chart-master/.DS_Store -------------------------------------------------------------------------------- /users/assets/js/chart-master/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/chart-master/Chart.js -------------------------------------------------------------------------------- /users/assets/js/chartjs-conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/chartjs-conf.js -------------------------------------------------------------------------------- /users/assets/js/common-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/common-scripts.js -------------------------------------------------------------------------------- /users/assets/js/easy-pie-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/easy-pie-chart.js -------------------------------------------------------------------------------- /users/assets/js/fancybox/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/fancybox/.DS_Store -------------------------------------------------------------------------------- /users/assets/js/form-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/form-component.js -------------------------------------------------------------------------------- /users/assets/js/fullcalendar/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/fullcalendar/.DS_Store -------------------------------------------------------------------------------- /users/assets/js/gritter-conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/gritter-conf.js -------------------------------------------------------------------------------- /users/assets/js/gritter/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/gritter/.DS_Store -------------------------------------------------------------------------------- /users/assets/js/gritter/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/gritter/css/.DS_Store -------------------------------------------------------------------------------- /users/assets/js/gritter/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/gritter/js/.DS_Store -------------------------------------------------------------------------------- /users/assets/js/jquery-1.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/jquery-1.8.3.min.js -------------------------------------------------------------------------------- /users/assets/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/jquery.js -------------------------------------------------------------------------------- /users/assets/js/jquery.nicescroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/jquery.nicescroll.js -------------------------------------------------------------------------------- /users/assets/js/jquery.scrollTo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/jquery.scrollTo.min.js -------------------------------------------------------------------------------- /users/assets/js/jquery.sparkline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/jquery.sparkline.js -------------------------------------------------------------------------------- /users/assets/js/jquery.tagsinput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/jquery.tagsinput.js -------------------------------------------------------------------------------- /users/assets/js/morris-conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/morris-conf.js -------------------------------------------------------------------------------- /users/assets/js/sparkline-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/sparkline-chart.js -------------------------------------------------------------------------------- /users/assets/js/tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/tasks.js -------------------------------------------------------------------------------- /users/assets/js/zabuto_calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/js/zabuto_calendar.js -------------------------------------------------------------------------------- /users/assets/lineicons/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/lineicons/.DS_Store -------------------------------------------------------------------------------- /users/assets/lineicons/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/lineicons/fonts/.DS_Store -------------------------------------------------------------------------------- /users/assets/lineicons/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/lineicons/index.html -------------------------------------------------------------------------------- /users/assets/lineicons/lte-ie7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/lineicons/lte-ie7.js -------------------------------------------------------------------------------- /users/assets/lineicons/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/assets/lineicons/style.css -------------------------------------------------------------------------------- /users/change-password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/change-password.php -------------------------------------------------------------------------------- /users/check_availability.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/check_availability.php -------------------------------------------------------------------------------- /users/complaint-details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/complaint-details.php -------------------------------------------------------------------------------- /users/complaint-history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/complaint-history.php -------------------------------------------------------------------------------- /users/complaintdocs/About Us.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/complaintdocs/About Us.docx -------------------------------------------------------------------------------- /users/complaintdocs/ang-pune.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/complaintdocs/ang-pune.pdf -------------------------------------------------------------------------------- /users/complaintdocs/logonew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/complaintdocs/logonew.png -------------------------------------------------------------------------------- /users/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/dashboard.php -------------------------------------------------------------------------------- /users/getsubcat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/getsubcat.php -------------------------------------------------------------------------------- /users/includes/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/includes/config.php -------------------------------------------------------------------------------- /users/includes/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/includes/db.php -------------------------------------------------------------------------------- /users/includes/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/includes/footer.php -------------------------------------------------------------------------------- /users/includes/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/includes/header.php -------------------------------------------------------------------------------- /users/includes/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/includes/sidebar.php -------------------------------------------------------------------------------- /users/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/index.php -------------------------------------------------------------------------------- /users/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/logout.php -------------------------------------------------------------------------------- /users/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/profile.php -------------------------------------------------------------------------------- /users/register-complaint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/register-complaint.php -------------------------------------------------------------------------------- /users/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajbhutada/students-grievance-management-system/HEAD/users/registration.php --------------------------------------------------------------------------------