├── README.md ├── apiwhasp.php ├── config └── conexion.php ├── controller ├── categoria.php ├── documento.php ├── email.php ├── ticket.php └── usuario.php ├── datos.js ├── docs ├── HelpDesk-Mockups.bmpr ├── HelpDesk-Mockups.pdf ├── Mejoras.txt ├── Miniatura.JPG ├── Miniatura2.JPG ├── Produccion.sql ├── Propaganda.JPG ├── andercode_helpdesk_10.sql ├── andercode_helpdesk_21.sql ├── andercode_helpdesk_41.sql ├── andercode_helpdesk_50.sql ├── andercode_helpdesk_51.sql ├── andercode_helpdesk_52.sql └── andercode_helpdesk_53.sql ├── index.js ├── index.php ├── models ├── Categoria.php ├── Documento.php ├── Email.php ├── Ticket.php ├── Usuario.php ├── class.phpmailer.php └── class.smtp.php ├── public ├── 1.jpg ├── 2.jpg ├── AsignarTicket.html ├── Captura1.JPG ├── Captura2.JPG ├── Captura3.JPG ├── Captura4.JPG ├── Captura5.JPG ├── CerradoTicket.html ├── NuevoTicket.html ├── css │ ├── lib │ │ ├── bootstrap-sweetalert │ │ │ └── sweetalert.css │ │ ├── bootstrap-table │ │ │ ├── bootstrap-table-fixed-columns.css │ │ │ ├── bootstrap-table-reorder-rows.css │ │ │ ├── bootstrap-table.min.css │ │ │ └── dragtable.css │ │ ├── bootstrap │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── charts-c3js │ │ │ └── c3.min.css │ │ ├── clockpicker │ │ │ └── bootstrap-clockpicker.min.css │ │ ├── datatables-net │ │ │ ├── autofill-2.1.2 │ │ │ │ └── css │ │ │ │ │ ├── autoFill.bootstrap.css │ │ │ │ │ └── autoFill.bootstrap.min.css │ │ │ ├── buttons-1.2.0 │ │ │ │ ├── css │ │ │ │ │ ├── buttons.bootstrap.css │ │ │ │ │ ├── buttons.bootstrap.min.css │ │ │ │ │ ├── buttons.dataTables.css │ │ │ │ │ └── buttons.dataTables.min.css │ │ │ │ └── swf │ │ │ │ │ └── flashExport.swf │ │ │ ├── col-reorder-1.3.2 │ │ │ │ └── css │ │ │ │ │ ├── colReorder.bootstrap.css │ │ │ │ │ ├── colReorder.bootstrap.min.css │ │ │ │ │ ├── colReorder.dataTables.css │ │ │ │ │ └── colReorder.dataTables.min.css │ │ │ ├── data-tables-1.10.12 │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ │ └── dataTables.bootstrap.min.css │ │ │ │ └── images │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ ├── sort_both.png │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ └── sort_desc_disabled.png │ │ │ ├── datatables.css │ │ │ ├── datatables.min.css │ │ │ ├── fixed-columns-3.2.2 │ │ │ │ └── css │ │ │ │ │ ├── fixedColumns.bootstrap.css │ │ │ │ │ └── fixedColumns.bootstrap.min.css │ │ │ ├── fixed-header-3.1.2 │ │ │ │ └── css │ │ │ │ │ ├── fixedHeader.bootstrap.css │ │ │ │ │ ├── fixedHeader.bootstrap.min.css │ │ │ │ │ ├── fixedHeader.dataTables.css │ │ │ │ │ └── fixedHeader.dataTables.min.css │ │ │ ├── responsive-2.1.0 │ │ │ │ └── css │ │ │ │ │ ├── responsive.bootstrap.css │ │ │ │ │ ├── responsive.bootstrap.min.css │ │ │ │ │ ├── responsive.dataTables.css │ │ │ │ │ └── responsive.dataTables.min.css │ │ │ ├── row-reorder-1.1.2 │ │ │ │ └── css │ │ │ │ │ ├── rowReorder.bootstrap.css │ │ │ │ │ ├── rowReorder.bootstrap.min.css │ │ │ │ │ ├── rowReorder.dataTables.css │ │ │ │ │ └── rowReorder.dataTables.min.css │ │ │ ├── scroller-1.4.2 │ │ │ │ └── css │ │ │ │ │ ├── scroller.bootstrap.css │ │ │ │ │ ├── scroller.bootstrap.min.css │ │ │ │ │ ├── scroller.dataTables.css │ │ │ │ │ └── scroller.dataTables.min.css │ │ │ └── select-1.2.0 │ │ │ │ └── css │ │ │ │ ├── select.bootstrap.css │ │ │ │ ├── select.bootstrap.min.css │ │ │ │ ├── select.dataTables.css │ │ │ │ └── select.dataTables.min.css │ │ ├── daterangepicker │ │ │ └── daterangepicker.css │ │ ├── font-awesome │ │ │ └── font-awesome.min.css │ │ ├── fullcalendar │ │ │ ├── fullcalendar.min.css │ │ │ └── scheduler.min.css │ │ ├── ion-range-slider │ │ │ ├── ion.rangeSlider.css │ │ │ └── ion.rangeSlider.skinHTML5.css │ │ ├── jquery-contextmenu │ │ │ ├── font │ │ │ │ ├── context-menu-icons.eot │ │ │ │ ├── context-menu-icons.ttf │ │ │ │ ├── context-menu-icons.woff │ │ │ │ └── context-menu-icons.woff2 │ │ │ ├── jquery.contextMenu.css │ │ │ └── jquery.contextMenu.min.css │ │ ├── jquery-flex-label │ │ │ └── jquery.flex.label.css │ │ ├── jquery-minicolors │ │ │ ├── jquery.minicolors.css │ │ │ ├── jquery.minicolors.js │ │ │ └── jquery.minicolors.png │ │ ├── jquery-tag-editor │ │ │ ├── delete.png │ │ │ ├── delete.svg │ │ │ └── jquery.tag-editor.css │ │ ├── jqueryui │ │ │ ├── images │ │ │ │ ├── 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.min.css │ │ ├── jstree │ │ │ ├── 32px.png │ │ │ ├── 40px.png │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ └── throbber.gif │ │ ├── ladda-button │ │ │ └── ladda-themeless.min.css │ │ ├── lobipanel │ │ │ ├── lobipanel.css │ │ │ └── lobipanel.min.css │ │ ├── multipicker │ │ │ ├── multipicker.css │ │ │ └── multipicker.min.css │ │ ├── plottable │ │ │ └── plottable.css │ │ ├── simplemde │ │ │ └── simplemde.min.css │ │ └── summernote │ │ │ ├── font │ │ │ ├── summernote.eot │ │ │ ├── summernote.ttf │ │ │ └── summernote.woff │ │ │ └── summernote.css │ ├── main.css │ ├── main.source.css │ └── separate │ │ ├── elements │ │ ├── cards.css │ │ ├── cards.min.css │ │ ├── player.css │ │ ├── player.min.css │ │ ├── ribbons.css │ │ ├── ribbons.min.css │ │ ├── steps.css │ │ └── steps.min.css │ │ ├── main.css │ │ ├── main.min.css │ │ ├── pages │ │ ├── activity.css │ │ ├── activity.min.css │ │ ├── calendar.css │ │ ├── calendar.min.css │ │ ├── chat.css │ │ ├── chat.min.css │ │ ├── contacts.css │ │ ├── contacts.min.css │ │ ├── editor.css │ │ ├── editor.min.css │ │ ├── error.css │ │ ├── error.min.css │ │ ├── files.css │ │ ├── files.min.css │ │ ├── gallery.css │ │ ├── gallery.min.css │ │ ├── invoice.css │ │ ├── invoice.min.css │ │ ├── login.css │ │ ├── login.min.css │ │ ├── mail.css │ │ ├── mail.min.css │ │ ├── messenger.css │ │ ├── messenger.min.css │ │ ├── others.css │ │ ├── others.min.css │ │ ├── prices.css │ │ ├── prices.min.css │ │ ├── profile-2.css │ │ ├── profile-2.min.css │ │ ├── profile.css │ │ ├── profile.min.css │ │ ├── project.css │ │ ├── project.min.css │ │ ├── ribbons.css │ │ ├── ribbons.min.css │ │ ├── tasks.css │ │ ├── tasks.min.css │ │ ├── user.css │ │ ├── user.min.css │ │ ├── widgets.css │ │ └── widgets.min.css │ │ ├── partials │ │ ├── base.css │ │ ├── base.min.css │ │ ├── fonts.css │ │ ├── fonts.min.css │ │ ├── forms.css │ │ ├── forms.min.css │ │ ├── grids.css │ │ ├── grids.min.css │ │ ├── helpers.css │ │ ├── helpers.min.css │ │ ├── icons.css │ │ ├── icons.min.css │ │ ├── interface.css │ │ ├── interface.min.css │ │ ├── mixins.css │ │ ├── mixins.min.css │ │ ├── print.css │ │ ├── print.min.css │ │ ├── reset.css │ │ ├── reset.min.css │ │ ├── side.css │ │ ├── side.min.css │ │ ├── typography.css │ │ ├── typography.min.css │ │ ├── vars.css │ │ └── vars.min.css │ │ └── vendor │ │ ├── blockui.css │ │ ├── blockui.min.css │ │ ├── bootstrap-daterangepicker.css │ │ ├── bootstrap-daterangepicker.min.css │ │ ├── bootstrap-datetimepicker.css │ │ ├── bootstrap-datetimepicker.min.css │ │ ├── bootstrap-select │ │ ├── bootstrap-select.css │ │ ├── bootstrap-select.min.css │ │ ├── variables.css │ │ └── variables.min.css │ │ ├── bootstrap-touchspin.css │ │ ├── bootstrap-touchspin.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── context_menu.css │ │ ├── context_menu.min.css │ │ ├── datatables-net.css │ │ ├── datatables-net.min.css │ │ ├── fancybox.css │ │ ├── fancybox.min.css │ │ ├── fileupload-ui.css │ │ ├── fileupload-ui.min.css │ │ ├── fileupload.css │ │ ├── fileupload.min.css │ │ ├── flag-icon │ │ ├── flag-icon-base.css │ │ ├── flag-icon-base.min.css │ │ ├── flag-icon-list.css │ │ ├── flag-icon-list.min.css │ │ ├── flag-icon-more.css │ │ ├── flag-icon-more.min.css │ │ ├── flag-icon.css │ │ ├── flag-icon.min.css │ │ ├── variabless.css │ │ └── variabless.min.css │ │ ├── jquery-steps.css │ │ ├── jquery-steps.min.css │ │ ├── jquery.minicolors.css │ │ ├── jquery.minicolors.min.css │ │ ├── jscrollpane.css │ │ ├── jscrollpane.min.css │ │ ├── lobipanel.css │ │ ├── lobipanel.min.css │ │ ├── multipicker.css │ │ ├── multipicker.min.css │ │ ├── pnotify.css │ │ ├── pnotify.min.css │ │ ├── progress.css │ │ ├── progress.min.css │ │ ├── select2.css │ │ ├── select2.min.css │ │ ├── slick.css │ │ ├── slick.min.css │ │ ├── sweet-alert-animations.css │ │ ├── sweet-alert-animations.min.css │ │ ├── tags_editor.css │ │ ├── tags_editor.min.css │ │ ├── theme.css │ │ ├── theme.min.css │ │ ├── typeahead.css │ │ └── typeahead.min.css ├── document │ └── 55 │ │ └── 1.docx ├── fonts │ ├── Proxima_Nova_Bold.eot │ ├── Proxima_Nova_Bold.svg │ ├── Proxima_Nova_Bold.ttf │ ├── Proxima_Nova_Bold.woff │ ├── Proxima_Nova_Bold.woff2 │ ├── Proxima_Nova_Bold_Italic.eot │ ├── Proxima_Nova_Bold_Italic.svg │ ├── Proxima_Nova_Bold_Italic.ttf │ ├── Proxima_Nova_Bold_Italic.woff │ ├── Proxima_Nova_Bold_Italic.woff2 │ ├── Proxima_Nova_Light.eot │ ├── Proxima_Nova_Light.svg │ ├── Proxima_Nova_Light.ttf │ ├── Proxima_Nova_Light.woff │ ├── Proxima_Nova_Light.woff2 │ ├── Proxima_Nova_Light_Italic.eot │ ├── Proxima_Nova_Light_Italic.svg │ ├── Proxima_Nova_Light_Italic.ttf │ ├── Proxima_Nova_Light_Italic.woff │ ├── Proxima_Nova_Light_Italic.woff2 │ ├── Proxima_Nova_Regular.eot │ ├── Proxima_Nova_Regular.svg │ ├── Proxima_Nova_Regular.ttf │ ├── Proxima_Nova_Regular.woff │ ├── Proxima_Nova_Regular.woff2 │ ├── Proxima_Nova_Regular_Italic.eot │ ├── Proxima_Nova_Regular_Italic.svg │ ├── Proxima_Nova_Regular_Italic.ttf │ ├── Proxima_Nova_Regular_Italic.woff │ ├── Proxima_Nova_Regular_Italic.woff2 │ ├── Proxima_Nova_Semibold.eot │ ├── Proxima_Nova_Semibold.svg │ ├── Proxima_Nova_Semibold.ttf │ ├── Proxima_Nova_Semibold.woff │ ├── Proxima_Nova_Semibold.woff2 │ ├── Proxima_Nova_Semibold_Italic.eot │ ├── Proxima_Nova_Semibold_Italic.svg │ ├── Proxima_Nova_Semibold_Italic.ttf │ ├── Proxima_Nova_Semibold_Italic.woff │ ├── Proxima_Nova_Semibold_Italic.woff2 │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── glyphicons-halflings-regular.woff2 │ ├── startui.eot │ ├── startui.svg │ ├── startui.ttf │ └── startui.woff ├── img │ ├── 100x100.jpg │ ├── avatar-1-128.png │ ├── avatar-1-256.png │ ├── avatar-1-32.png │ ├── avatar-1-48.png │ ├── avatar-1-64.png │ ├── avatar-2-128.png │ ├── avatar-2-256.png │ ├── avatar-2-32.png │ ├── avatar-2-48.png │ ├── avatar-2-64.png │ ├── avatar-3-128.png │ ├── avatar-3-256.png │ ├── avatar-3-32.png │ ├── avatar-3-48.png │ ├── avatar-3-64.png │ ├── avatar-sign.png │ ├── blank.gif │ ├── bst-down.png │ ├── bst-sort.png │ ├── bst-up.png │ ├── close.png │ ├── doc.jpg │ ├── email_template_1.png │ ├── email_template_2.png │ ├── email_template_3.png │ ├── email_template_4.png │ ├── email_template_5.png │ ├── email_template_6.png │ ├── email_template_7.png │ ├── fancybox_loading.gif │ ├── fancybox_loading@2x.gif │ ├── fancybox_overlay.png │ ├── fancybox_sprite.png │ ├── fancybox_sprite@2x.png │ ├── faq-1.png │ ├── faq-2.png │ ├── faq-3.png │ ├── faq-search.jpg │ ├── file-doc.png │ ├── file-img.png │ ├── file-pdf.png │ ├── file-xls.png │ ├── file.png │ ├── flags │ │ ├── 1x1 │ │ │ ├── ad.svg │ │ │ ├── ae.svg │ │ │ ├── af.svg │ │ │ ├── ag.svg │ │ │ ├── ai.svg │ │ │ ├── al.svg │ │ │ ├── am.svg │ │ │ ├── ao.svg │ │ │ ├── aq.svg │ │ │ ├── ar.svg │ │ │ ├── as.svg │ │ │ ├── at.svg │ │ │ ├── au.svg │ │ │ ├── aw.svg │ │ │ ├── ax.svg │ │ │ ├── az.svg │ │ │ ├── ba.svg │ │ │ ├── bb.svg │ │ │ ├── bd.svg │ │ │ ├── be.svg │ │ │ ├── bf.svg │ │ │ ├── bg.svg │ │ │ ├── bh.svg │ │ │ ├── bi.svg │ │ │ ├── bj.svg │ │ │ ├── bl.svg │ │ │ ├── bm.svg │ │ │ ├── bn.svg │ │ │ ├── bo.svg │ │ │ ├── bq.svg │ │ │ ├── br.svg │ │ │ ├── bs.svg │ │ │ ├── bt.svg │ │ │ ├── bv.svg │ │ │ ├── bw.svg │ │ │ ├── by.svg │ │ │ ├── bz.svg │ │ │ ├── ca.svg │ │ │ ├── cc.svg │ │ │ ├── cd.svg │ │ │ ├── cf.svg │ │ │ ├── cg.svg │ │ │ ├── ch.svg │ │ │ ├── ci.svg │ │ │ ├── ck.svg │ │ │ ├── cl.svg │ │ │ ├── cm.svg │ │ │ ├── cn.svg │ │ │ ├── co.svg │ │ │ ├── cr.svg │ │ │ ├── cu.svg │ │ │ ├── cv.svg │ │ │ ├── cw.svg │ │ │ ├── cx.svg │ │ │ ├── cy.svg │ │ │ ├── cz.svg │ │ │ ├── de.svg │ │ │ ├── dj.svg │ │ │ ├── dk.svg │ │ │ ├── dm.svg │ │ │ ├── do.svg │ │ │ ├── dz.svg │ │ │ ├── ec.svg │ │ │ ├── ee.svg │ │ │ ├── eg.svg │ │ │ ├── eh.svg │ │ │ ├── er.svg │ │ │ ├── es.svg │ │ │ ├── et.svg │ │ │ ├── eu.svg │ │ │ ├── fi.svg │ │ │ ├── fj.svg │ │ │ ├── fk.svg │ │ │ ├── fm.svg │ │ │ ├── fo.svg │ │ │ ├── fr.svg │ │ │ ├── ga.svg │ │ │ ├── gb-eng.svg │ │ │ ├── gb-sct.svg │ │ │ ├── gb-wls.svg │ │ │ ├── gb.svg │ │ │ ├── gd.svg │ │ │ ├── ge.svg │ │ │ ├── gf.svg │ │ │ ├── gg.svg │ │ │ ├── gh.svg │ │ │ ├── gi.svg │ │ │ ├── gl.svg │ │ │ ├── gm.svg │ │ │ ├── gn.svg │ │ │ ├── gp.svg │ │ │ ├── gq.svg │ │ │ ├── gr.svg │ │ │ ├── gs.svg │ │ │ ├── gt.svg │ │ │ ├── gu.svg │ │ │ ├── gw.svg │ │ │ ├── gy.svg │ │ │ ├── hk.svg │ │ │ ├── hm.svg │ │ │ ├── hn.svg │ │ │ ├── hr.svg │ │ │ ├── ht.svg │ │ │ ├── hu.svg │ │ │ ├── id.svg │ │ │ ├── ie.svg │ │ │ ├── il.svg │ │ │ ├── im.svg │ │ │ ├── in.svg │ │ │ ├── io.svg │ │ │ ├── iq.svg │ │ │ ├── ir.svg │ │ │ ├── is.svg │ │ │ ├── it.svg │ │ │ ├── je.svg │ │ │ ├── jm.svg │ │ │ ├── jo.svg │ │ │ ├── jp.svg │ │ │ ├── ke.svg │ │ │ ├── kg.svg │ │ │ ├── kh.svg │ │ │ ├── ki.svg │ │ │ ├── km.svg │ │ │ ├── kn.svg │ │ │ ├── kp.svg │ │ │ ├── kr.svg │ │ │ ├── kw.svg │ │ │ ├── ky.svg │ │ │ ├── kz.svg │ │ │ ├── la.svg │ │ │ ├── lb.svg │ │ │ ├── lc.svg │ │ │ ├── li.svg │ │ │ ├── lk.svg │ │ │ ├── lr.svg │ │ │ ├── ls.svg │ │ │ ├── lt.svg │ │ │ ├── lu.svg │ │ │ ├── lv.svg │ │ │ ├── ly.svg │ │ │ ├── ma.svg │ │ │ ├── mc.svg │ │ │ ├── md.svg │ │ │ ├── me.svg │ │ │ ├── mf.svg │ │ │ ├── mg.svg │ │ │ ├── mh.svg │ │ │ ├── mk.svg │ │ │ ├── ml.svg │ │ │ ├── mm.svg │ │ │ ├── mn.svg │ │ │ ├── mo.svg │ │ │ ├── mp.svg │ │ │ ├── mq.svg │ │ │ ├── mr.svg │ │ │ ├── ms.svg │ │ │ ├── mt.svg │ │ │ ├── mu.svg │ │ │ ├── mv.svg │ │ │ ├── mw.svg │ │ │ ├── mx.svg │ │ │ ├── my.svg │ │ │ ├── mz.svg │ │ │ ├── na.svg │ │ │ ├── nc.svg │ │ │ ├── ne.svg │ │ │ ├── nf.svg │ │ │ ├── ng.svg │ │ │ ├── ni.svg │ │ │ ├── nl.svg │ │ │ ├── no.svg │ │ │ ├── np.svg │ │ │ ├── nr.svg │ │ │ ├── nu.svg │ │ │ ├── nz.svg │ │ │ ├── om.svg │ │ │ ├── pa.svg │ │ │ ├── pe.svg │ │ │ ├── pf.svg │ │ │ ├── pg.svg │ │ │ ├── ph.svg │ │ │ ├── pk.svg │ │ │ ├── pl.svg │ │ │ ├── pm.svg │ │ │ ├── pn.svg │ │ │ ├── pr.svg │ │ │ ├── ps.svg │ │ │ ├── pt.svg │ │ │ ├── pw.svg │ │ │ ├── py.svg │ │ │ ├── qa.svg │ │ │ ├── re.svg │ │ │ ├── ro.svg │ │ │ ├── rs.svg │ │ │ ├── ru.svg │ │ │ ├── rw.svg │ │ │ ├── sa.svg │ │ │ ├── sb.svg │ │ │ ├── sc.svg │ │ │ ├── sd.svg │ │ │ ├── se.svg │ │ │ ├── sg.svg │ │ │ ├── sh.svg │ │ │ ├── si.svg │ │ │ ├── sj.svg │ │ │ ├── sk.svg │ │ │ ├── sl.svg │ │ │ ├── sm.svg │ │ │ ├── sn.svg │ │ │ ├── so.svg │ │ │ ├── sr.svg │ │ │ ├── ss.svg │ │ │ ├── st.svg │ │ │ ├── sv.svg │ │ │ ├── sx.svg │ │ │ ├── sy.svg │ │ │ ├── sz.svg │ │ │ ├── tc.svg │ │ │ ├── td.svg │ │ │ ├── tf.svg │ │ │ ├── tg.svg │ │ │ ├── th.svg │ │ │ ├── tj.svg │ │ │ ├── tk.svg │ │ │ ├── tl.svg │ │ │ ├── tm.svg │ │ │ ├── tn.svg │ │ │ ├── to.svg │ │ │ ├── tr.svg │ │ │ ├── tt.svg │ │ │ ├── tv.svg │ │ │ ├── tw.svg │ │ │ ├── tz.svg │ │ │ ├── ua.svg │ │ │ ├── ug.svg │ │ │ ├── um.svg │ │ │ ├── us.svg │ │ │ ├── uy.svg │ │ │ ├── uz.svg │ │ │ ├── va.svg │ │ │ ├── vc.svg │ │ │ ├── ve.svg │ │ │ ├── vg.svg │ │ │ ├── vi.svg │ │ │ ├── vn.svg │ │ │ ├── vu.svg │ │ │ ├── wf.svg │ │ │ ├── ws.svg │ │ │ ├── ye.svg │ │ │ ├── yt.svg │ │ │ ├── za.svg │ │ │ ├── zm.svg │ │ │ ├── zw.svg │ │ │ └── zz.svg │ │ └── 4x3 │ │ │ ├── ad.svg │ │ │ ├── ae.svg │ │ │ ├── af.svg │ │ │ ├── ag.svg │ │ │ ├── ai.svg │ │ │ ├── al.svg │ │ │ ├── am.svg │ │ │ ├── ao.svg │ │ │ ├── aq.svg │ │ │ ├── ar.svg │ │ │ ├── as.svg │ │ │ ├── at.svg │ │ │ ├── au.svg │ │ │ ├── aw.svg │ │ │ ├── ax.svg │ │ │ ├── az.svg │ │ │ ├── ba.svg │ │ │ ├── bb.svg │ │ │ ├── bd.svg │ │ │ ├── be.svg │ │ │ ├── bf.svg │ │ │ ├── bg.svg │ │ │ ├── bh.svg │ │ │ ├── bi.svg │ │ │ ├── bj.svg │ │ │ ├── bl.svg │ │ │ ├── bm.svg │ │ │ ├── bn.svg │ │ │ ├── bo.svg │ │ │ ├── bq.svg │ │ │ ├── br.svg │ │ │ ├── bs.svg │ │ │ ├── bt.svg │ │ │ ├── bv.svg │ │ │ ├── bw.svg │ │ │ ├── by.svg │ │ │ ├── bz.svg │ │ │ ├── ca.svg │ │ │ ├── cc.svg │ │ │ ├── cd.svg │ │ │ ├── cf.svg │ │ │ ├── cg.svg │ │ │ ├── ch.svg │ │ │ ├── ci.svg │ │ │ ├── ck.svg │ │ │ ├── cl.svg │ │ │ ├── cm.svg │ │ │ ├── cn.svg │ │ │ ├── co.svg │ │ │ ├── cr.svg │ │ │ ├── cu.svg │ │ │ ├── cv.svg │ │ │ ├── cw.svg │ │ │ ├── cx.svg │ │ │ ├── cy.svg │ │ │ ├── cz.svg │ │ │ ├── de.svg │ │ │ ├── dj.svg │ │ │ ├── dk.svg │ │ │ ├── dm.svg │ │ │ ├── do.svg │ │ │ ├── dz.svg │ │ │ ├── ec.svg │ │ │ ├── ee.svg │ │ │ ├── eg.svg │ │ │ ├── eh.svg │ │ │ ├── er.svg │ │ │ ├── es.svg │ │ │ ├── et.svg │ │ │ ├── eu.svg │ │ │ ├── fi.svg │ │ │ ├── fj.svg │ │ │ ├── fk.svg │ │ │ ├── fm.svg │ │ │ ├── fo.svg │ │ │ ├── fr.svg │ │ │ ├── ga.svg │ │ │ ├── gb-eng.svg │ │ │ ├── gb-sct.svg │ │ │ ├── gb-wls.svg │ │ │ ├── gb.svg │ │ │ ├── gd.svg │ │ │ ├── ge.svg │ │ │ ├── gf.svg │ │ │ ├── gg.svg │ │ │ ├── gh.svg │ │ │ ├── gi.svg │ │ │ ├── gl.svg │ │ │ ├── gm.svg │ │ │ ├── gn.svg │ │ │ ├── gp.svg │ │ │ ├── gq.svg │ │ │ ├── gr.svg │ │ │ ├── gs.svg │ │ │ ├── gt.svg │ │ │ ├── gu.svg │ │ │ ├── gw.svg │ │ │ ├── gy.svg │ │ │ ├── hk.svg │ │ │ ├── hm.svg │ │ │ ├── hn.svg │ │ │ ├── hr.svg │ │ │ ├── ht.svg │ │ │ ├── hu.svg │ │ │ ├── id.svg │ │ │ ├── ie.svg │ │ │ ├── il.svg │ │ │ ├── im.svg │ │ │ ├── in.svg │ │ │ ├── io.svg │ │ │ ├── iq.svg │ │ │ ├── ir.svg │ │ │ ├── is.svg │ │ │ ├── it.svg │ │ │ ├── je.svg │ │ │ ├── jm.svg │ │ │ ├── jo.svg │ │ │ ├── jp.svg │ │ │ ├── ke.svg │ │ │ ├── kg.svg │ │ │ ├── kh.svg │ │ │ ├── ki.svg │ │ │ ├── km.svg │ │ │ ├── kn.svg │ │ │ ├── kp.svg │ │ │ ├── kr.svg │ │ │ ├── kw.svg │ │ │ ├── ky.svg │ │ │ ├── kz.svg │ │ │ ├── la.svg │ │ │ ├── lb.svg │ │ │ ├── lc.svg │ │ │ ├── li.svg │ │ │ ├── lk.svg │ │ │ ├── lr.svg │ │ │ ├── ls.svg │ │ │ ├── lt.svg │ │ │ ├── lu.svg │ │ │ ├── lv.svg │ │ │ ├── ly.svg │ │ │ ├── ma.svg │ │ │ ├── mc.svg │ │ │ ├── md.svg │ │ │ ├── me.svg │ │ │ ├── mf.svg │ │ │ ├── mg.svg │ │ │ ├── mh.svg │ │ │ ├── mk.svg │ │ │ ├── ml.svg │ │ │ ├── mm.svg │ │ │ ├── mn.svg │ │ │ ├── mo.svg │ │ │ ├── mp.svg │ │ │ ├── mq.svg │ │ │ ├── mr.svg │ │ │ ├── ms.svg │ │ │ ├── mt.svg │ │ │ ├── mu.svg │ │ │ ├── mv.svg │ │ │ ├── mw.svg │ │ │ ├── mx.svg │ │ │ ├── my.svg │ │ │ ├── mz.svg │ │ │ ├── na.svg │ │ │ ├── nc.svg │ │ │ ├── ne.svg │ │ │ ├── nf.svg │ │ │ ├── ng.svg │ │ │ ├── ni.svg │ │ │ ├── nl.svg │ │ │ ├── no.svg │ │ │ ├── np.svg │ │ │ ├── nr.svg │ │ │ ├── nu.svg │ │ │ ├── nz.svg │ │ │ ├── om.svg │ │ │ ├── pa.svg │ │ │ ├── pe.svg │ │ │ ├── pf.svg │ │ │ ├── pg.svg │ │ │ ├── ph.svg │ │ │ ├── pk.svg │ │ │ ├── pl.svg │ │ │ ├── pm.svg │ │ │ ├── pn.svg │ │ │ ├── pr.svg │ │ │ ├── ps.svg │ │ │ ├── pt.svg │ │ │ ├── pw.svg │ │ │ ├── py.svg │ │ │ ├── qa.svg │ │ │ ├── re.svg │ │ │ ├── ro.svg │ │ │ ├── rs.svg │ │ │ ├── ru.svg │ │ │ ├── rw.svg │ │ │ ├── sa.svg │ │ │ ├── sb.svg │ │ │ ├── sc.svg │ │ │ ├── sd.svg │ │ │ ├── se.svg │ │ │ ├── sg.svg │ │ │ ├── sh.svg │ │ │ ├── si.svg │ │ │ ├── sj.svg │ │ │ ├── sk.svg │ │ │ ├── sl.svg │ │ │ ├── sm.svg │ │ │ ├── sn.svg │ │ │ ├── so.svg │ │ │ ├── sr.svg │ │ │ ├── ss.svg │ │ │ ├── st.svg │ │ │ ├── sv.svg │ │ │ ├── sx.svg │ │ │ ├── sy.svg │ │ │ ├── sz.svg │ │ │ ├── tc.svg │ │ │ ├── td.svg │ │ │ ├── tf.svg │ │ │ ├── tg.svg │ │ │ ├── th.svg │ │ │ ├── tj.svg │ │ │ ├── tk.svg │ │ │ ├── tl.svg │ │ │ ├── tm.svg │ │ │ ├── tn.svg │ │ │ ├── to.svg │ │ │ ├── tr.svg │ │ │ ├── tt.svg │ │ │ ├── tv.svg │ │ │ ├── tw.svg │ │ │ ├── tz.svg │ │ │ ├── ua.svg │ │ │ ├── ug.svg │ │ │ ├── um.svg │ │ │ ├── us.svg │ │ │ ├── uy.svg │ │ │ ├── uz.svg │ │ │ ├── va.svg │ │ │ ├── vc.svg │ │ │ ├── ve.svg │ │ │ ├── vg.svg │ │ │ ├── vi.svg │ │ │ ├── vn.svg │ │ │ ├── vu.svg │ │ │ ├── wf.svg │ │ │ ├── ws.svg │ │ │ ├── ye.svg │ │ │ ├── yt.svg │ │ │ ├── za.svg │ │ │ ├── zm.svg │ │ │ ├── zw.svg │ │ │ └── zz.svg │ ├── folder.png │ ├── gall-img-1.jpg │ ├── gall-img-2.jpg │ ├── gall-img-3.jpg │ ├── gall-img-4.jpg │ ├── gall-img-5.jpg │ ├── gall-img-6.jpg │ ├── gall-img-7.jpg │ ├── google-map-marker.png │ ├── gradient-scroll.png │ ├── img-task.jpg │ ├── logo-2-mob-caribbean.png │ ├── logo-2-mob-inverse.png │ ├── logo-2-mob.png │ ├── logo-2-white-caribbean.png │ ├── logo-2-white-inverse.png │ ├── logo-2-white.png │ ├── logo-2.png │ ├── photo-184-1.jpg │ ├── photo-220-1.jpg │ ├── photo-64-1.jpg │ ├── photo-64-2.jpg │ ├── photo-64-3.jpg │ ├── photo-64-4.jpg │ ├── photo-92-1.jpg │ ├── photo-92-2.jpg │ ├── photo-92-3.jpg │ ├── pic.jpg │ ├── player-controls.png │ ├── player-photo-b.jpg │ ├── player-photo-s.jpg │ ├── post-1.jpeg │ ├── post-2.jpg │ ├── post-3.jpeg │ ├── profile-bg-light.jpg │ ├── profile-bg.jpg │ ├── smile.png │ ├── statistic-box-green.png │ ├── statistic-box-grid.png │ ├── statistic-box-purple.png │ ├── statistic-box-red.png │ ├── statistic-box-yellow.png │ ├── user.jpg │ ├── video-preview.jpg │ └── widget-user-bg.jpg ├── js │ ├── app.js │ ├── lib │ │ ├── asPieProgress │ │ │ └── jquery-asPieProgress.min.js │ │ ├── autosize │ │ │ ├── autosize.js │ │ │ └── autosize.min.js │ │ ├── blockUI │ │ │ └── jquery.blockUI.js │ │ ├── blueimp-canvas-to-blob │ │ │ ├── canvas-to-blob.js │ │ │ └── canvas-to-blob.min.js │ │ ├── blueimp-file-upload │ │ │ ├── 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 │ │ │ └── vendor │ │ │ │ └── jquery.ui.widget.js │ │ ├── blueimp-load-image │ │ │ ├── demo.js │ │ │ ├── load-image-exif-map.js │ │ │ ├── load-image-exif.js │ │ │ ├── load-image-meta.js │ │ │ ├── load-image-orientation.js │ │ │ ├── load-image.all.min.js │ │ │ ├── load-image.js │ │ │ └── vendor │ │ │ │ ├── jquery.Jcrop.js │ │ │ │ └── jquery.js │ │ ├── blueimp-tmpl │ │ │ ├── tmpl.js │ │ │ └── tmpl.min.js │ │ ├── bootstrap-maxlength │ │ │ ├── bootstrap-maxlength-init.js │ │ │ └── bootstrap-maxlength.js │ │ ├── bootstrap-notify │ │ │ ├── bootstrap-notify-init.js │ │ │ └── bootstrap-notify.min.js │ │ ├── bootstrap-select │ │ │ ├── bootstrap-select.min.js │ │ │ └── i18n │ │ │ │ ├── defaults-ar_AR.js │ │ │ │ ├── defaults-ar_AR.min.js │ │ │ │ ├── defaults-bg_BG.js │ │ │ │ ├── defaults-bg_BG.min.js │ │ │ │ ├── defaults-cro_CRO.js │ │ │ │ ├── defaults-cro_CRO.min.js │ │ │ │ ├── defaults-cs_CZ.js │ │ │ │ ├── defaults-cs_CZ.min.js │ │ │ │ ├── defaults-da_DK.js │ │ │ │ ├── defaults-da_DK.min.js │ │ │ │ ├── defaults-de_DE.js │ │ │ │ ├── defaults-de_DE.min.js │ │ │ │ ├── defaults-en_US.js │ │ │ │ ├── defaults-en_US.min.js │ │ │ │ ├── defaults-es_CL.js │ │ │ │ ├── defaults-es_CL.min.js │ │ │ │ ├── defaults-eu.js │ │ │ │ ├── defaults-eu.min.js │ │ │ │ ├── defaults-fa_IR.js │ │ │ │ ├── defaults-fa_IR.min.js │ │ │ │ ├── defaults-fi_FI.js │ │ │ │ ├── defaults-fi_FI.min.js │ │ │ │ ├── defaults-fr_FR.js │ │ │ │ ├── defaults-fr_FR.min.js │ │ │ │ ├── defaults-hu_HU.js │ │ │ │ ├── defaults-hu_HU.min.js │ │ │ │ ├── defaults-id_ID.js │ │ │ │ ├── defaults-id_ID.min.js │ │ │ │ ├── defaults-it_IT.js │ │ │ │ ├── defaults-it_IT.min.js │ │ │ │ ├── defaults-ko_KR.js │ │ │ │ ├── defaults-ko_KR.min.js │ │ │ │ ├── defaults-nb_NO.js │ │ │ │ ├── defaults-nb_NO.min.js │ │ │ │ ├── defaults-nl_NL.js │ │ │ │ ├── defaults-nl_NL.min.js │ │ │ │ ├── defaults-pl_PL.js │ │ │ │ ├── defaults-pl_PL.min.js │ │ │ │ ├── defaults-pt_BR.js │ │ │ │ ├── defaults-pt_BR.min.js │ │ │ │ ├── defaults-pt_PT.js │ │ │ │ ├── defaults-pt_PT.min.js │ │ │ │ ├── defaults-ro_RO.js │ │ │ │ ├── defaults-ro_RO.min.js │ │ │ │ ├── defaults-ru_RU.js │ │ │ │ ├── defaults-ru_RU.min.js │ │ │ │ ├── defaults-sk_SK.js │ │ │ │ ├── defaults-sk_SK.min.js │ │ │ │ ├── defaults-sl_SI.js │ │ │ │ ├── defaults-sl_SI.min.js │ │ │ │ ├── defaults-sv_SE.js │ │ │ │ ├── defaults-sv_SE.min.js │ │ │ │ ├── defaults-tr_TR.js │ │ │ │ ├── defaults-tr_TR.min.js │ │ │ │ ├── defaults-ua_UA.js │ │ │ │ ├── defaults-ua_UA.min.js │ │ │ │ ├── defaults-zh_CN.js │ │ │ │ ├── defaults-zh_CN.min.js │ │ │ │ ├── defaults-zh_TW.js │ │ │ │ └── defaults-zh_TW.min.js │ │ ├── bootstrap-sweetalert │ │ │ ├── sweetalert.js │ │ │ └── sweetalert.min.js │ │ ├── bootstrap-table │ │ │ ├── bootstrap-table-export.min.js │ │ │ ├── bootstrap-table-filter-control-init.js │ │ │ ├── bootstrap-table-filter-control.min.js │ │ │ ├── bootstrap-table-fixed-columns-init.js │ │ │ ├── bootstrap-table-fixed-columns.js │ │ │ ├── bootstrap-table-init.js │ │ │ ├── bootstrap-table-mobile-init.js │ │ │ ├── bootstrap-table-mobile.min.js │ │ │ ├── bootstrap-table-reorder-columns-init.js │ │ │ ├── bootstrap-table-reorder-columns.min.js │ │ │ ├── bootstrap-table-reorder-rows-init.js │ │ │ ├── bootstrap-table-reorder-rows.min.js │ │ │ ├── bootstrap-table-resizable.min.js │ │ │ ├── bootstrap-table-resize-columns-init.js │ │ │ ├── bootstrap-table.js │ │ │ ├── colResizable-1.5.source.js │ │ │ ├── jquery-ui.js │ │ │ ├── jquery.dragtable.js │ │ │ ├── jquery.tablednd.js │ │ │ └── tableExport.min.js │ │ ├── bootstrap-touchspin │ │ │ ├── jquery.bootstrap-touchspin.js │ │ │ └── jquery.bootstrap-touchspin.min.js │ │ ├── bootstrap │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ ├── charts-c3js │ │ │ ├── c3.min.js │ │ │ └── c3js-init.js │ │ ├── clickout │ │ │ └── jquery.clickout.js │ │ ├── clockpicker │ │ │ ├── bootstrap-clockpicker-init.js │ │ │ └── bootstrap-clockpicker.min.js │ │ ├── d3 │ │ │ └── d3.min.js │ │ ├── datatables-net │ │ │ ├── autofill-2.1.2 │ │ │ │ └── js │ │ │ │ │ ├── autoFill.bootstrap.js │ │ │ │ │ └── autoFill.bootstrap.min.js │ │ │ ├── buttons-1.2.0 │ │ │ │ └── js │ │ │ │ │ ├── buttons.bootstrap.js │ │ │ │ │ ├── buttons.bootstrap.min.js │ │ │ │ │ ├── buttons.colVis.js │ │ │ │ │ ├── buttons.colVis.min.js │ │ │ │ │ ├── buttons.flash.js │ │ │ │ │ ├── buttons.flash.min.js │ │ │ │ │ ├── buttons.html5.js │ │ │ │ │ ├── buttons.html5.min.js │ │ │ │ │ ├── buttons.print.js │ │ │ │ │ ├── buttons.print.min.js │ │ │ │ │ ├── dataTables.buttons.js │ │ │ │ │ └── dataTables.buttons.min.js │ │ │ ├── col-reorder-1.3.2 │ │ │ │ └── js │ │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ │ └── dataTables.colReorder.min.js │ │ │ ├── data-tables-1.10.12 │ │ │ │ └── js │ │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ │ └── dataTables.bootstrap.min.js │ │ │ ├── datatables.js │ │ │ ├── datatables.min.js │ │ │ ├── fixed-columns-3.2.2 │ │ │ │ └── js │ │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ │ └── dataTables.fixedColumns.min.js │ │ │ ├── fixed-header-3.1.2 │ │ │ │ └── js │ │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ │ └── dataTables.fixedHeader.min.js │ │ │ ├── jszip-2.5.0 │ │ │ │ ├── jszip.js │ │ │ │ └── jszip.min.js │ │ │ ├── pdfmake-0.1.18 │ │ │ │ └── build │ │ │ │ │ ├── pdfmake.js │ │ │ │ │ ├── pdfmake.min.js │ │ │ │ │ └── vfs_fonts.js │ │ │ ├── responsive-2.1.0 │ │ │ │ └── js │ │ │ │ │ ├── dataTables.responsive.js │ │ │ │ │ ├── dataTables.responsive.min.js │ │ │ │ │ ├── responsive.bootstrap.js │ │ │ │ │ └── responsive.bootstrap.min.js │ │ │ ├── row-reorder-1.1.2 │ │ │ │ └── js │ │ │ │ │ ├── dataTables.rowReorder.js │ │ │ │ │ └── dataTables.rowReorder.min.js │ │ │ ├── scroller-1.4.2 │ │ │ │ └── js │ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ │ └── dataTables.scroller.min.js │ │ │ └── select-1.2.0 │ │ │ │ └── js │ │ │ │ ├── dataTables.select.js │ │ │ │ └── dataTables.select.min.js │ │ ├── daterangepicker │ │ │ └── daterangepicker.js │ │ ├── eonasdan-bootstrap-datetimepicker │ │ │ └── bootstrap-datetimepicker.min.js │ │ ├── fancybox │ │ │ ├── jquery.fancybox.js │ │ │ └── jquery.fancybox.pack.js │ │ ├── fullcalendar │ │ │ ├── fullcalendar-init.js │ │ │ ├── fullcalendar.min.js │ │ │ └── scheduler.min.js │ │ ├── google-maps │ │ │ ├── google-maps-init.js │ │ │ └── infobox.js │ │ ├── hide-show-password │ │ │ ├── bootstrap-show-password-init.js │ │ │ └── bootstrap-show-password.min.js │ │ ├── html-sortable │ │ │ └── html.sortable.js │ │ ├── html5-form-validation │ │ │ ├── jquery.validation.js │ │ │ └── jquery.validation.min.js │ │ ├── input-mask │ │ │ ├── input-mask-init.js │ │ │ └── jquery.mask.min.js │ │ ├── ion-range-slider │ │ │ ├── init.js │ │ │ └── ion.rangeSlider.js │ │ ├── jScrollPane │ │ │ ├── jquery.jscrollpane.js │ │ │ ├── jquery.jscrollpane.min.js │ │ │ ├── jquery.mousewheel.js │ │ │ └── mwheelIntent.js │ │ ├── jquery-contextmenu │ │ │ ├── jquery.contextMenu.min.js │ │ │ └── jquery.ui.position.min.js │ │ ├── jquery-flex-label │ │ │ └── jquery.flex.label.js │ │ ├── jquery-minicolors │ │ │ └── jquery.minicolors.min.js │ │ ├── jquery-steps │ │ │ ├── jquery.steps.js │ │ │ └── jquery.steps.min.js │ │ ├── jquery-tag-editor │ │ │ ├── jquery.caret.min.js │ │ │ └── jquery.tag-editor.min.js │ │ ├── jquery-validation │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ ├── jquery.validate.min.js │ │ │ └── localization │ │ │ │ ├── messages_ar.js │ │ │ │ ├── messages_ar.min.js │ │ │ │ ├── messages_bg.js │ │ │ │ ├── messages_bg.min.js │ │ │ │ ├── messages_bn_BD.js │ │ │ │ ├── messages_bn_BD.min.js │ │ │ │ ├── messages_ca.js │ │ │ │ ├── messages_ca.min.js │ │ │ │ ├── messages_cs.js │ │ │ │ ├── messages_cs.min.js │ │ │ │ ├── messages_da.js │ │ │ │ ├── messages_da.min.js │ │ │ │ ├── messages_de.js │ │ │ │ ├── messages_de.min.js │ │ │ │ ├── messages_el.js │ │ │ │ ├── messages_el.min.js │ │ │ │ ├── messages_es.js │ │ │ │ ├── messages_es.min.js │ │ │ │ ├── messages_es_AR.js │ │ │ │ ├── messages_es_AR.min.js │ │ │ │ ├── messages_es_PE.js │ │ │ │ ├── messages_es_PE.min.js │ │ │ │ ├── messages_et.js │ │ │ │ ├── messages_et.min.js │ │ │ │ ├── messages_eu.js │ │ │ │ ├── messages_eu.min.js │ │ │ │ ├── messages_fa.js │ │ │ │ ├── messages_fa.min.js │ │ │ │ ├── messages_fi.js │ │ │ │ ├── messages_fi.min.js │ │ │ │ ├── messages_fr.js │ │ │ │ ├── messages_fr.min.js │ │ │ │ ├── messages_ge.js │ │ │ │ ├── messages_ge.min.js │ │ │ │ ├── messages_gl.js │ │ │ │ ├── messages_gl.min.js │ │ │ │ ├── messages_he.js │ │ │ │ ├── messages_he.min.js │ │ │ │ ├── messages_hr.js │ │ │ │ ├── messages_hr.min.js │ │ │ │ ├── messages_hu.js │ │ │ │ ├── messages_hu.min.js │ │ │ │ ├── messages_hy_AM.js │ │ │ │ ├── messages_hy_AM.min.js │ │ │ │ ├── messages_id.js │ │ │ │ ├── messages_id.min.js │ │ │ │ ├── messages_is.js │ │ │ │ ├── messages_is.min.js │ │ │ │ ├── messages_it.js │ │ │ │ ├── messages_it.min.js │ │ │ │ ├── messages_ja.js │ │ │ │ ├── messages_ja.min.js │ │ │ │ ├── messages_ka.js │ │ │ │ ├── messages_ka.min.js │ │ │ │ ├── messages_kk.js │ │ │ │ ├── messages_kk.min.js │ │ │ │ ├── messages_ko.js │ │ │ │ ├── messages_ko.min.js │ │ │ │ ├── messages_lt.js │ │ │ │ ├── messages_lt.min.js │ │ │ │ ├── messages_lv.js │ │ │ │ ├── messages_lv.min.js │ │ │ │ ├── messages_mk.js │ │ │ │ ├── messages_mk.min.js │ │ │ │ ├── messages_my.js │ │ │ │ ├── messages_my.min.js │ │ │ │ ├── messages_nl.js │ │ │ │ ├── messages_nl.min.js │ │ │ │ ├── messages_no.js │ │ │ │ ├── messages_no.min.js │ │ │ │ ├── messages_pl.js │ │ │ │ ├── messages_pl.min.js │ │ │ │ ├── messages_pt_BR.js │ │ │ │ ├── messages_pt_BR.min.js │ │ │ │ ├── messages_pt_PT.js │ │ │ │ ├── messages_pt_PT.min.js │ │ │ │ ├── messages_ro.js │ │ │ │ ├── messages_ro.min.js │ │ │ │ ├── messages_ru.js │ │ │ │ ├── messages_ru.min.js │ │ │ │ ├── messages_si.js │ │ │ │ ├── messages_si.min.js │ │ │ │ ├── messages_sk.js │ │ │ │ ├── messages_sk.min.js │ │ │ │ ├── messages_sl.js │ │ │ │ ├── messages_sl.min.js │ │ │ │ ├── messages_sr.js │ │ │ │ ├── messages_sr.min.js │ │ │ │ ├── messages_sr_lat.js │ │ │ │ ├── messages_sr_lat.min.js │ │ │ │ ├── messages_sv.js │ │ │ │ ├── messages_sv.min.js │ │ │ │ ├── messages_th.js │ │ │ │ ├── messages_th.min.js │ │ │ │ ├── messages_tj.js │ │ │ │ ├── messages_tj.min.js │ │ │ │ ├── messages_tr.js │ │ │ │ ├── messages_tr.min.js │ │ │ │ ├── messages_uk.js │ │ │ │ ├── messages_uk.min.js │ │ │ │ ├── messages_vi.js │ │ │ │ ├── messages_vi.min.js │ │ │ │ ├── messages_zh.js │ │ │ │ ├── messages_zh.min.js │ │ │ │ ├── messages_zh_TW.js │ │ │ │ ├── messages_zh_TW.min.js │ │ │ │ ├── methods_de.js │ │ │ │ ├── methods_de.min.js │ │ │ │ ├── methods_es_CL.js │ │ │ │ ├── methods_es_CL.min.js │ │ │ │ ├── methods_fi.js │ │ │ │ ├── methods_fi.min.js │ │ │ │ ├── methods_nl.js │ │ │ │ ├── methods_nl.min.js │ │ │ │ ├── methods_pt.js │ │ │ │ └── methods_pt.min.js │ │ ├── jquery │ │ │ └── jquery.min.js │ │ ├── jqueryui │ │ │ └── jquery-ui.min.js │ │ ├── jstree │ │ │ └── jstree.min.js │ │ ├── ladda-button │ │ │ ├── ladda-button-init.js │ │ │ ├── ladda.min.js │ │ │ └── spin.min.js │ │ ├── lobipanel │ │ │ ├── lobipanel.js │ │ │ └── lobipanel.min.js │ │ ├── match-height │ │ │ ├── jquery.matchHeight.js │ │ │ └── jquery.matchHeight.min.js │ │ ├── moment-timezone │ │ │ ├── moment-timezone-with-data-2010-2020.js │ │ │ ├── moment-timezone-with-data-2010-2020.min.js │ │ │ ├── moment-timezone-with-data.js │ │ │ ├── moment-timezone-with-data.min.js │ │ │ └── moment-timezone.min.js │ │ ├── moment │ │ │ ├── locale │ │ │ │ ├── af.js │ │ │ │ ├── ar-ma.js │ │ │ │ ├── ar-sa.js │ │ │ │ ├── ar-tn.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── be.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bo.js │ │ │ │ ├── br.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cv.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-at.js │ │ │ │ ├── de.js │ │ │ │ ├── dv.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en-ie.js │ │ │ │ ├── en-nz.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr-ch.js │ │ │ │ ├── fr.js │ │ │ │ ├── fy.js │ │ │ │ ├── gd.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy-am.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── jv.js │ │ │ │ ├── ka.js │ │ │ │ ├── kk.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ky.js │ │ │ │ ├── lb.js │ │ │ │ ├── lo.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── me.js │ │ │ │ ├── mk.js │ │ │ │ ├── ml.js │ │ │ │ ├── mr.js │ │ │ │ ├── ms-my.js │ │ │ │ ├── ms.js │ │ │ │ ├── my.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── pa-in.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── se.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── ss.js │ │ │ │ ├── sv.js │ │ │ │ ├── sw.js │ │ │ │ ├── ta.js │ │ │ │ ├── te.js │ │ │ │ ├── th.js │ │ │ │ ├── tl-ph.js │ │ │ │ ├── tlh.js │ │ │ │ ├── tr.js │ │ │ │ ├── tzl.js │ │ │ │ ├── tzm-latn.js │ │ │ │ ├── tzm.js │ │ │ │ ├── uk.js │ │ │ │ ├── uz.js │ │ │ │ ├── vi.js │ │ │ │ ├── x-pseudo.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh-tw.js │ │ │ ├── locales.js │ │ │ ├── locales.min.js │ │ │ ├── moment-with-locales.js │ │ │ ├── moment-with-locales.min.js │ │ │ └── moment.min.js │ │ ├── multipicker │ │ │ ├── multipicker.js │ │ │ └── multipicker.min.js │ │ ├── nestable │ │ │ └── jquery.nestable.js │ │ ├── notie │ │ │ ├── notie-init.js │ │ │ └── notie.js │ │ ├── peity │ │ │ ├── jquery.peity.js │ │ │ └── jquery.peity.min.js │ │ ├── plottable │ │ │ ├── plottable-init.js │ │ │ ├── plottable.min.js │ │ │ └── svgtypewriter.js │ │ ├── pnotify │ │ │ ├── pnotify-init.js │ │ │ └── pnotify.js │ │ ├── responsive-bootstrap-toolkit │ │ │ ├── bootstrap-toolkit-1.5.0.js │ │ │ ├── bootstrap-toolkit-1.5.0.min.js │ │ │ ├── bootstrap-toolkit.js │ │ │ └── bootstrap-toolkit.min.js │ │ ├── salvattore │ │ │ └── salvattore.min.js │ │ ├── select2 │ │ │ ├── i18n │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-BR.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sr-Cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-CN.js │ │ │ │ └── zh-TW.js │ │ │ ├── select2.full.js │ │ │ ├── select2.full.min.js │ │ │ ├── select2.js │ │ │ └── select2.min.js │ │ ├── simplemde │ │ │ └── simplemde.min.js │ │ ├── slick-carousel │ │ │ ├── slick.js │ │ │ └── slick.min.js │ │ ├── summernote │ │ │ └── summernote.min.js │ │ ├── table-edit │ │ │ └── jquery.tabledit.min.js │ │ ├── tether │ │ │ └── tether.min.js │ │ └── typeahead │ │ │ ├── jquery.typeahead.min.js │ │ │ └── typeahead-init.js │ ├── plugins.js │ └── summernote-ES.js └── test.html ├── test.php └── view ├── ConsultarTicket ├── consultarticket.js ├── index.php └── modalasignar.php ├── DetalleTicket ├── detalleticket.js └── index.php ├── Home ├── home.js └── index.php ├── Logout └── logout.php ├── MainHead └── head.php ├── MainHeader └── header.php ├── MainJs └── js.php ├── MainNav └── nav.php ├── MntPerfil ├── index.php └── mntperfil.js ├── MntUsuario ├── index.php ├── mntusuario.js └── modalmantenimiento.php └── NuevoTicket ├── index.php └── nuevoticket.js /README.md: -------------------------------------------------------------------------------- 1 | # Tutorial_HelpDesk 2 | -------------------------------------------------------------------------------- /apiwhasp.php: -------------------------------------------------------------------------------- 1 | '51959747175@c.us', 13 | 'body'=>"Test" 14 | ) 15 | ); 16 | $url = $apiURL.'message?token='.$token; 17 | $options = stream_context_create( 18 | array('http' => 19 | array( 20 | 'method' => 'POST', 21 | 'header' => 'Content-type: application/json', 22 | 'content' => $data 23 | ) 24 | ) 25 | ); 26 | $response = file_get_contents($url,false,$options); 27 | echo $response; exit; 28 | ?> -------------------------------------------------------------------------------- /controller/categoria.php: -------------------------------------------------------------------------------- 1 | get_categoria(); 9 | if(is_array($datos)==true and count($datos)>0){ 10 | foreach($datos as $row) 11 | { 12 | $html.= ""; 13 | } 14 | echo $html; 15 | } 16 | break; 17 | } 18 | ?> -------------------------------------------------------------------------------- /controller/email.php: -------------------------------------------------------------------------------- 1 | ticket_abierto($_POST["tick_id"]); 12 | break; 13 | 14 | case "ticket_cerrado": 15 | $email->ticket_cerrado($_POST["tick_id"]); 16 | break; 17 | 18 | case "ticket_asignado": 19 | $email->ticket_asignado($_POST["tick_id"]); 20 | break; 21 | } 22 | ?> -------------------------------------------------------------------------------- /datos.js: -------------------------------------------------------------------------------- 1 | function init(){ 2 | } 3 | 4 | $(document).ready(function() { 5 | 6 | }); 7 | 8 | $(document).on("click", "#btnsoporte", function () { 9 | if ($('#rol_id').val()==1){ 10 | $('#lbltitulo').html("Acceso Soporte"); 11 | $('#btnsoporte').html("Acceso Usuario"); 12 | $('#rol_id').val(2); 13 | $("#imgtipo").attr("src","public/2.jpg"); 14 | }else{ 15 | $('#lbltitulo').html("Acceso Usuario"); 16 | $('#btnsoporte').html("Acceso Soporte"); 17 | $('#rol_id').val(1); 18 | $("#imgtipo").attr("src","public/1.jpg"); 19 | } 20 | }); 21 | 22 | init(); -------------------------------------------------------------------------------- /docs/HelpDesk-Mockups.bmpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/docs/HelpDesk-Mockups.bmpr -------------------------------------------------------------------------------- /docs/HelpDesk-Mockups.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/docs/HelpDesk-Mockups.pdf -------------------------------------------------------------------------------- /docs/Mejoras.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/docs/Mejoras.txt -------------------------------------------------------------------------------- /docs/Miniatura.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/docs/Miniatura.JPG -------------------------------------------------------------------------------- /docs/Miniatura2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/docs/Miniatura2.JPG -------------------------------------------------------------------------------- /docs/Propaganda.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/docs/Propaganda.JPG -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | function init(){ 2 | } 3 | 4 | $(document).ready(function() { 5 | 6 | }); 7 | 8 | $(document).on("click", "#btnsoporte", function () { 9 | if ($('#rol_id').val()==1){ 10 | $('#lbltitulo').html("Acceso Soporte"); 11 | $('#btnsoporte').html("Acceso Usuario"); 12 | $('#rol_id').val(2); 13 | $("#imgtipo").attr("src","public/2.jpg"); 14 | }else{ 15 | $('#lbltitulo').html("Acceso Usuario"); 16 | $('#btnsoporte').html("Acceso Soporte"); 17 | $('#rol_id').val(1); 18 | $("#imgtipo").attr("src","public/1.jpg"); 19 | } 20 | }); 21 | 22 | init(); -------------------------------------------------------------------------------- /models/Categoria.php: -------------------------------------------------------------------------------- 1 | prepare($sql); 9 | $sql->execute(); 10 | return $resultado=$sql->fetchAll(); 11 | } 12 | 13 | } 14 | ?> -------------------------------------------------------------------------------- /public/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/1.jpg -------------------------------------------------------------------------------- /public/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/2.jpg -------------------------------------------------------------------------------- /public/Captura1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/Captura1.JPG -------------------------------------------------------------------------------- /public/Captura2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/Captura2.JPG -------------------------------------------------------------------------------- /public/Captura3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/Captura3.JPG -------------------------------------------------------------------------------- /public/Captura4.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/Captura4.JPG -------------------------------------------------------------------------------- /public/Captura5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/Captura5.JPG -------------------------------------------------------------------------------- /public/css/lib/bootstrap-table/bootstrap-table-fixed-columns.css: -------------------------------------------------------------------------------- 1 | .fixed-table-header-columns, 2 | .fixed-table-body-columns { 3 | position: absolute; 4 | background-color: #fff; 5 | display: none; 6 | box-sizing: border-box; 7 | overflow: hidden; 8 | } 9 | 10 | .fixed-table-header-columns .table, 11 | .fixed-table-body-columns .table { 12 | border-right: 1px solid #ddd; 13 | } 14 | 15 | .fixed-table-header-columns .table.table-no-bordered, 16 | .fixed-table-body-columns .table.table-no-bordered { 17 | border-right: 1px solid transparent; 18 | } 19 | 20 | .fixed-table-body-columns table { 21 | position: absolute; 22 | animation: none; 23 | } 24 | 25 | .bootstrap-table .table-hover > tbody > tr.hover > td{ 26 | background-color: #f5f5f5; 27 | } -------------------------------------------------------------------------------- /public/css/lib/datatables-net/buttons-1.2.0/swf/flashExport.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/datatables-net/buttons-1.2.0/swf/flashExport.swf -------------------------------------------------------------------------------- /public/css/lib/datatables-net/col-reorder-1.3.2/css/colReorder.bootstrap.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable { 2 | position: absolute !important; 3 | background-color: rgba(255, 255, 255, 0.7); 4 | z-index: 202; 5 | } 6 | 7 | div.DTCR_pointer { 8 | width: 1px; 9 | background-color: #337ab7; 10 | z-index: 201; 11 | } 12 | -------------------------------------------------------------------------------- /public/css/lib/datatables-net/col-reorder-1.3.2/css/colReorder.bootstrap.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable{position:absolute !important;background-color:rgba(255,255,255,0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#337ab7;z-index:201} 2 | -------------------------------------------------------------------------------- /public/css/lib/datatables-net/col-reorder-1.3.2/css/colReorder.dataTables.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable { 2 | position: absolute !important; 3 | background-color: rgba(255, 255, 255, 0.7); 4 | z-index: 202; 5 | } 6 | 7 | div.DTCR_pointer { 8 | width: 1px; 9 | background-color: #0259C4; 10 | z-index: 201; 11 | } 12 | -------------------------------------------------------------------------------- /public/css/lib/datatables-net/col-reorder-1.3.2/css/colReorder.dataTables.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable{position:absolute !important;background-color:rgba(255,255,255,0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#0259C4;z-index:201} 2 | -------------------------------------------------------------------------------- /public/css/lib/datatables-net/data-tables-1.10.12/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/datatables-net/data-tables-1.10.12/images/sort_asc.png -------------------------------------------------------------------------------- /public/css/lib/datatables-net/data-tables-1.10.12/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/datatables-net/data-tables-1.10.12/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /public/css/lib/datatables-net/data-tables-1.10.12/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/datatables-net/data-tables-1.10.12/images/sort_both.png -------------------------------------------------------------------------------- /public/css/lib/datatables-net/data-tables-1.10.12/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/datatables-net/data-tables-1.10.12/images/sort_desc.png -------------------------------------------------------------------------------- /public/css/lib/datatables-net/data-tables-1.10.12/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/datatables-net/data-tables-1.10.12/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /public/css/lib/datatables-net/fixed-header-3.1.2/css/fixedHeader.bootstrap.css: -------------------------------------------------------------------------------- 1 | table.dataTable.fixedHeader-floating, 2 | table.dataTable.fixedHeader-locked { 3 | background-color: white; 4 | margin-top: 0 !important; 5 | margin-bottom: 0 !important; 6 | } 7 | 8 | table.dataTable.fixedHeader-floating { 9 | position: fixed !important; 10 | } 11 | 12 | table.dataTable.fixedHeader-locked { 13 | position: absolute !important; 14 | } 15 | 16 | @media print { 17 | table.fixedHeader-floating { 18 | display: none; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /public/css/lib/datatables-net/fixed-header-3.1.2/css/fixedHeader.bootstrap.min.css: -------------------------------------------------------------------------------- 1 | table.dataTable.fixedHeader-floating,table.dataTable.fixedHeader-locked{background-color:white;margin-top:0 !important;margin-bottom:0 !important}table.dataTable.fixedHeader-floating{position:fixed !important}table.dataTable.fixedHeader-locked{position:absolute !important}@media print{table.fixedHeader-floating{display:none}} 2 | -------------------------------------------------------------------------------- /public/css/lib/datatables-net/fixed-header-3.1.2/css/fixedHeader.dataTables.css: -------------------------------------------------------------------------------- 1 | table.fixedHeader-floating { 2 | position: fixed !important; 3 | background-color: white; 4 | } 5 | 6 | table.fixedHeader-floating.no-footer { 7 | border-bottom-width: 0; 8 | } 9 | 10 | table.fixedHeader-locked { 11 | position: absolute !important; 12 | background-color: white; 13 | } 14 | 15 | @media print { 16 | table.fixedHeader-floating { 17 | display: none; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /public/css/lib/datatables-net/fixed-header-3.1.2/css/fixedHeader.dataTables.min.css: -------------------------------------------------------------------------------- 1 | table.fixedHeader-floating{position:fixed !important;background-color:white}table.fixedHeader-floating.no-footer{border-bottom-width:0}table.fixedHeader-locked{position:absolute !important;background-color:white}@media print{table.fixedHeader-floating{display:none}} 2 | -------------------------------------------------------------------------------- /public/css/lib/datatables-net/row-reorder-1.1.2/css/rowReorder.bootstrap.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float { 2 | position: absolute !important; 3 | opacity: 0.8; 4 | table-layout: fixed; 5 | outline: 2px solid #337ab7; 6 | outline-offset: -2px; 7 | z-index: 2001; 8 | } 9 | 10 | tr.dt-rowReorder-moving { 11 | outline: 2px solid #888; 12 | outline-offset: -2px; 13 | } 14 | 15 | body.dt-rowReorder-noOverflow { 16 | overflow-x: hidden; 17 | } 18 | 19 | table.dataTable td.reorder { 20 | text-align: center; 21 | cursor: move; 22 | } 23 | -------------------------------------------------------------------------------- /public/css/lib/datatables-net/row-reorder-1.1.2/css/rowReorder.bootstrap.min.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float{position:absolute !important;opacity:0.8;table-layout:fixed;outline:2px solid #337ab7;outline-offset:-2px;z-index:2001}tr.dt-rowReorder-moving{outline:2px solid #888;outline-offset:-2px}body.dt-rowReorder-noOverflow{overflow-x:hidden}table.dataTable td.reorder{text-align:center;cursor:move} 2 | -------------------------------------------------------------------------------- /public/css/lib/datatables-net/row-reorder-1.1.2/css/rowReorder.dataTables.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float { 2 | position: absolute !important; 3 | opacity: 0.8; 4 | table-layout: fixed; 5 | outline: 2px solid #888; 6 | outline-offset: -2px; 7 | z-index: 2001; 8 | } 9 | 10 | tr.dt-rowReorder-moving { 11 | outline: 2px solid #555; 12 | outline-offset: -2px; 13 | } 14 | 15 | body.dt-rowReorder-noOverflow { 16 | overflow-x: hidden; 17 | } 18 | 19 | table.dataTable td.reorder { 20 | text-align: center; 21 | cursor: move; 22 | } 23 | -------------------------------------------------------------------------------- /public/css/lib/datatables-net/row-reorder-1.1.2/css/rowReorder.dataTables.min.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float{position:absolute !important;opacity:0.8;table-layout:fixed;outline:2px solid #888;outline-offset:-2px;z-index:2001}tr.dt-rowReorder-moving{outline:2px solid #555;outline-offset:-2px}body.dt-rowReorder-noOverflow{overflow-x:hidden}table.dataTable td.reorder{text-align:center;cursor:move} 2 | -------------------------------------------------------------------------------- /public/css/lib/datatables-net/scroller-1.4.2/css/scroller.bootstrap.css: -------------------------------------------------------------------------------- 1 | div.DTS { 2 | display: block !important; 3 | } 4 | div.DTS tbody th, 5 | div.DTS tbody td { 6 | white-space: nowrap; 7 | } 8 | div.DTS div.DTS_Loading { 9 | z-index: 1; 10 | } 11 | div.DTS div.dataTables_scrollBody { 12 | background: repeating-linear-gradient(45deg, #edeeff, #edeeff 10px, white 10px, white 20px); 13 | } 14 | div.DTS div.dataTables_scrollBody table { 15 | z-index: 2; 16 | } 17 | div.DTS div.dataTables_paginate, 18 | div.DTS div.dataTables_length { 19 | display: none; 20 | } 21 | 22 | div.DTS tbody tr.even { 23 | background-color: white; 24 | } 25 | -------------------------------------------------------------------------------- /public/css/lib/datatables-net/scroller-1.4.2/css/scroller.bootstrap.min.css: -------------------------------------------------------------------------------- 1 | div.DTS{display:block !important}div.DTS tbody th,div.DTS tbody td{white-space:nowrap}div.DTS div.DTS_Loading{z-index:1}div.DTS div.dataTables_scrollBody{background:repeating-linear-gradient(45deg, #edeeff, #edeeff 10px, #fff 10px, #fff 20px)}div.DTS div.dataTables_scrollBody table{z-index:2}div.DTS div.dataTables_paginate,div.DTS div.dataTables_length{display:none}div.DTS tbody tr.even{background-color:white} 2 | -------------------------------------------------------------------------------- /public/css/lib/datatables-net/scroller-1.4.2/css/scroller.dataTables.css: -------------------------------------------------------------------------------- 1 | div.DTS { 2 | display: block !important; 3 | } 4 | div.DTS tbody th, 5 | div.DTS tbody td { 6 | white-space: nowrap; 7 | } 8 | div.DTS div.DTS_Loading { 9 | z-index: 1; 10 | } 11 | div.DTS div.dataTables_scrollBody { 12 | background: repeating-linear-gradient(45deg, #edeeff, #edeeff 10px, white 10px, white 20px); 13 | } 14 | div.DTS div.dataTables_scrollBody table { 15 | z-index: 2; 16 | } 17 | div.DTS div.dataTables_paginate, 18 | div.DTS div.dataTables_length { 19 | display: none; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/lib/datatables-net/scroller-1.4.2/css/scroller.dataTables.min.css: -------------------------------------------------------------------------------- 1 | div.DTS{display:block !important}div.DTS tbody th,div.DTS tbody td{white-space:nowrap}div.DTS div.DTS_Loading{z-index:1}div.DTS div.dataTables_scrollBody{background:repeating-linear-gradient(45deg, #edeeff, #edeeff 10px, #fff 10px, #fff 20px)}div.DTS div.dataTables_scrollBody table{z-index:2}div.DTS div.dataTables_paginate,div.DTS div.dataTables_length{display:none} 2 | -------------------------------------------------------------------------------- /public/css/lib/jquery-contextmenu/font/context-menu-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/jquery-contextmenu/font/context-menu-icons.eot -------------------------------------------------------------------------------- /public/css/lib/jquery-contextmenu/font/context-menu-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/jquery-contextmenu/font/context-menu-icons.ttf -------------------------------------------------------------------------------- /public/css/lib/jquery-contextmenu/font/context-menu-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/jquery-contextmenu/font/context-menu-icons.woff -------------------------------------------------------------------------------- /public/css/lib/jquery-contextmenu/font/context-menu-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/jquery-contextmenu/font/context-menu-icons.woff2 -------------------------------------------------------------------------------- /public/css/lib/jquery-minicolors/jquery.minicolors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/jquery-minicolors/jquery.minicolors.png -------------------------------------------------------------------------------- /public/css/lib/jquery-tag-editor/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/jquery-tag-editor/delete.png -------------------------------------------------------------------------------- /public/css/lib/jquery-tag-editor/delete.svg: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/css/lib/jqueryui/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/jqueryui/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /public/css/lib/jqueryui/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/jqueryui/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /public/css/lib/jqueryui/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/jqueryui/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /public/css/lib/jqueryui/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/jqueryui/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /public/css/lib/jqueryui/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/jqueryui/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /public/css/lib/jqueryui/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/jqueryui/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /public/css/lib/jqueryui/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/jqueryui/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /public/css/lib/jqueryui/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/jqueryui/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /public/css/lib/jqueryui/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/jqueryui/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /public/css/lib/jqueryui/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/jqueryui/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /public/css/lib/jqueryui/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/jqueryui/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /public/css/lib/jstree/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/jstree/32px.png -------------------------------------------------------------------------------- /public/css/lib/jstree/40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/jstree/40px.png -------------------------------------------------------------------------------- /public/css/lib/jstree/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/jstree/throbber.gif -------------------------------------------------------------------------------- /public/css/lib/summernote/font/summernote.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/summernote/font/summernote.eot -------------------------------------------------------------------------------- /public/css/lib/summernote/font/summernote.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/summernote/font/summernote.ttf -------------------------------------------------------------------------------- /public/css/lib/summernote/font/summernote.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/lib/summernote/font/summernote.woff -------------------------------------------------------------------------------- /public/css/separate/pages/error.min.css: -------------------------------------------------------------------------------- 1 | html{height:100%}body{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;height:100%}.page-error-box{background:#fff;border:solid 1px #d8e2e7;-webkit-border-radius:5px;border-radius:5px;padding:50px 30px 55px;text-align:center;margin:0 auto;width:100%;max-width:475px;color:#919fa9;line-height:1}.page-error-box .error-code{font-size:9.375rem;font-weight:600}.page-error-box .error-title{font-size:2.25rem;font-weight:600;margin:0 0 1.5rem}@media (max-width:767px){.page-error-box{padding:25px 15px}.page-error-box .error-code{font-size:5.5rem}.page-error-box .error-title{font-size:1.5rem}} -------------------------------------------------------------------------------- /public/css/separate/pages/ribbons.min.css: -------------------------------------------------------------------------------- 1 | .ribbon-block{background:#fff;padding:30px;border:1px solid #c5d6de;margin-bottom:30px;position:relative;min-height:175px}.ribbon-block .block-icon{font-size:84px;color:#c3cbd2;position:relative}.ribbon-block .title{display:block;font-size:15px;margin-top:10px;position:relative}.ribbon-block.with-bg{background-color:#00a8ff;border-color:#00a8ff;color:#fff}.ribbon-block.with-bg .block-icon{color:#fff}.ribbon-block.with-image{background-color:#343434;color:#fff}.ribbon-block.with-image .block-icon{color:#fff}.ribbon-block.with-image .background-image{background-size:cover;position:absolute;top:0;bottom:0;left:0;right:0;z-index:0;opacity:.4} -------------------------------------------------------------------------------- /public/css/separate/partials/mixins.css: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Variables 3 | ========================================================================== */ 4 | /* ========================================================================== 5 | Mixins 6 | ========================================================================== */ 7 | -------------------------------------------------------------------------------- /public/css/separate/partials/mixins.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/separate/partials/mixins.min.css -------------------------------------------------------------------------------- /public/css/separate/partials/vars.css: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Variables 3 | ========================================================================== */ 4 | -------------------------------------------------------------------------------- /public/css/separate/partials/vars.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/separate/partials/vars.min.css -------------------------------------------------------------------------------- /public/css/separate/vendor/blockui.css: -------------------------------------------------------------------------------- 1 | .blockUI.blockOverlay { 2 | -webkit-border-radius: .25rem; 3 | border-radius: .25rem; 4 | } 5 | .block-msg-default, 6 | .block-msg-message-loader { 7 | border: none !important; 8 | background-color: transparent !important; 9 | } 10 | .block-msg-default .fa { 11 | font-size: 42px; 12 | color: #fff; 13 | display: inline-block; 14 | width: 42px; 15 | height: 40px; 16 | } 17 | .block-msg-default h6 { 18 | margin-top: 8px; 19 | color: #fff; 20 | font-size: 17px; 21 | line-height: 24px; 22 | } 23 | .block-msg-message-loader .blockui-default-message { 24 | padding: 20px; 25 | -webkit-border-radius: .25rem; 26 | border-radius: .25rem; 27 | color: #102943; 28 | font-size: 17px; 29 | background: #fff; 30 | } 31 | -------------------------------------------------------------------------------- /public/css/separate/vendor/blockui.min.css: -------------------------------------------------------------------------------- 1 | .blockUI.blockOverlay{-webkit-border-radius:.25rem;border-radius:.25rem}.block-msg-default,.block-msg-message-loader{border:none!important;background-color:transparent!important}.block-msg-default .fa{font-size:42px;color:#fff;display:inline-block;width:42px;height:40px}.block-msg-default h6{margin-top:8px;color:#fff;font-size:17px;line-height:24px}.block-msg-message-loader .blockui-default-message{padding:20px;-webkit-border-radius:.25rem;border-radius:.25rem;color:#102943;font-size:17px;background:#fff} -------------------------------------------------------------------------------- /public/css/separate/vendor/bootstrap-select/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/separate/vendor/bootstrap-select/variables.css -------------------------------------------------------------------------------- /public/css/separate/vendor/bootstrap-select/variables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/separate/vendor/bootstrap-select/variables.min.css -------------------------------------------------------------------------------- /public/css/separate/vendor/bootstrap-touchspin.min.css: -------------------------------------------------------------------------------- 1 | .bootstrap-touchspin .input-group-btn-vertical{position:relative;white-space:nowrap;width:1%;vertical-align:middle;display:table-cell}.bootstrap-touchspin .input-group-btn-vertical>.btn{display:block;float:none;width:100%;max-width:100%;padding:8px 10px;margin-left:-1px;position:relative}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up{-webkit-border-radius:0;border-radius:0;-webkit-border-top-right-radius:4px;border-top-right-radius:4px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{margin-top:-2px;-webkit-border-radius:0;border-radius:0;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px}.bootstrap-touchspin .input-group-btn-vertical i{position:absolute;top:3px;left:5px;font-size:9px;font-weight:400} -------------------------------------------------------------------------------- /public/css/separate/vendor/fileupload-ui.min.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8";.fileupload-buttonbar .btn,.fileupload-buttonbar .toggle{margin-bottom:5px}.progress-animated .bar,.progress-animated .progress-bar{background:url(../img/progressbar.gif)!important;-webkit-filter:none;filter:none}.fileupload-process{float:right;display:none}.files .processing .preview,.fileupload-processing .fileupload-process{display:block;width:32px;height:32px;background:url(../img/loading.gif) center no-repeat;background-size:contain}.files audio,.files video{max-width:300px}@media (max-width:767px){.files .btn span,.files .toggle,.fileupload-buttonbar .toggle{display:none}.files .name{width:80px;word-wrap:break-word}.files audio,.files video{max-width:80px}.files canvas,.files img{max-width:100%}} -------------------------------------------------------------------------------- /public/css/separate/vendor/fileupload.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 3 | * jQuery File Upload Plugin CSS 4 | * https://github.com/blueimp/jQuery-File-Upload 5 | * 6 | * Copyright 2013, Sebastian Tschan 7 | * https://blueimp.net 8 | * 9 | * Licensed under the MIT license: 10 | * http://www.opensource.org/licenses/MIT 11 | */ 12 | .fileinput-button { 13 | position: relative; 14 | overflow: hidden; 15 | display: inline-block; 16 | } 17 | .fileinput-button input { 18 | position: absolute; 19 | top: 0; 20 | right: 0; 21 | margin: 0; 22 | opacity: 0; 23 | font-size: 200px; 24 | direction: ltr; 25 | cursor: pointer; 26 | } 27 | /* Fixes for IE < 8 */ 28 | @media screen { 29 | .fileinput-button input { 30 | filter: alpha(opacity=0); 31 | font-size: 100%; 32 | height: 100%; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /public/css/separate/vendor/fileupload.min.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8";.fileinput-button{position:relative;overflow:hidden;display:inline-block}.fileinput-button input{position:absolute;top:0;right:0;margin:0;opacity:0;font-size:200px;direction:ltr;cursor:pointer}@media screen{.fileinput-button input{font-size:100%;height:100%}} -------------------------------------------------------------------------------- /public/css/separate/vendor/flag-icon/flag-icon-base.css: -------------------------------------------------------------------------------- 1 | .flag-icon-background { 2 | background-size: contain; 3 | background-position: 50%; 4 | background-repeat: no-repeat; 5 | } 6 | .flag-icon { 7 | background-size: contain; 8 | background-position: 50%; 9 | background-repeat: no-repeat; 10 | position: relative; 11 | display: inline-block; 12 | width: 1.33333333em; 13 | line-height: 1em; 14 | opacity: .7; 15 | } 16 | .flag-icon:before { 17 | content: "\00a0"; 18 | } 19 | .flag-icon.flag-icon-squared { 20 | width: 1em; 21 | } 22 | -------------------------------------------------------------------------------- /public/css/separate/vendor/flag-icon/flag-icon-base.min.css: -------------------------------------------------------------------------------- 1 | .flag-icon-background{background-size:contain;background-position:50%;background-repeat:no-repeat}.flag-icon{background-size:contain;background-position:50%;background-repeat:no-repeat;position:relative;display:inline-block;width:1.33333333em;line-height:1em;opacity:.7}.flag-icon:before{content:"\00a0"}.flag-icon.flag-icon-squared{width:1em} -------------------------------------------------------------------------------- /public/css/separate/vendor/flag-icon/variabless.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/separate/vendor/flag-icon/variabless.css -------------------------------------------------------------------------------- /public/css/separate/vendor/flag-icon/variabless.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/separate/vendor/flag-icon/variabless.min.css -------------------------------------------------------------------------------- /public/css/separate/vendor/jquery.minicolors.css: -------------------------------------------------------------------------------- 1 | .minicolors .minicolors-swatch { 2 | -webkit-border-radius: 2px; 3 | border-radius: 2px; 4 | top: 5px; 5 | z-index: 4; 6 | border-color: #f5f5f5; 7 | } 8 | .minicolors.minicolors-position-left .minicolors-swatch { 9 | left: 6px; 10 | } 11 | .minicolors.minicolors-position-right .minicolors-swatch { 12 | right: 6px; 13 | } 14 | .input-group .minicolors .minicolors-input { 15 | width: 100%; 16 | } 17 | -------------------------------------------------------------------------------- /public/css/separate/vendor/jquery.minicolors.min.css: -------------------------------------------------------------------------------- 1 | .minicolors .minicolors-swatch{-webkit-border-radius:2px;border-radius:2px;top:5px;z-index:4;border-color:#f5f5f5}.minicolors.minicolors-position-left .minicolors-swatch{left:6px}.minicolors.minicolors-position-right .minicolors-swatch{right:6px}.input-group .minicolors .minicolors-input{width:100%} -------------------------------------------------------------------------------- /public/css/separate/vendor/multipicker.min.css: -------------------------------------------------------------------------------- 1 | .checklist{border-color:#d8e2e7;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.checklist>*{color:#00a8ff}.checklist>.active{border:2px solid #00a8ff;color:#343434}.checklist>.right-side{border-left:2px solid transparent}.checklist>.left-side{border-right:2px solid transparent}.checklist>.center-side{border-right:2px solid transparent;border-left:2px solid transparent}.checklist.vertical>.right-side{border-left-color:#00a8ff}.checklist.vertical>.left-side{border-right-color:#00a8ff}.checklist.vertical>.center-side{border-left-color:#00a8ff;border-right-color:#00a8ff}.checklist.vertical{width:48px;padding:3px 5px} -------------------------------------------------------------------------------- /public/css/separate/vendor/progress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/separate/vendor/progress.css -------------------------------------------------------------------------------- /public/css/separate/vendor/progress.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/css/separate/vendor/progress.min.css -------------------------------------------------------------------------------- /public/document/55/1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/document/55/1.docx -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Bold.eot -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Bold.ttf -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Bold.woff -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Bold.woff2 -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Bold_Italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Bold_Italic.eot -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Bold_Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Bold_Italic.ttf -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Bold_Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Bold_Italic.woff -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Bold_Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Bold_Italic.woff2 -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Light.eot -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Light.ttf -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Light.woff -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Light.woff2 -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Light_Italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Light_Italic.eot -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Light_Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Light_Italic.ttf -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Light_Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Light_Italic.woff -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Light_Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Light_Italic.woff2 -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Regular.eot -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Regular.ttf -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Regular.woff -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Regular.woff2 -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Regular_Italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Regular_Italic.eot -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Regular_Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Regular_Italic.ttf -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Regular_Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Regular_Italic.woff -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Regular_Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Regular_Italic.woff2 -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Semibold.eot -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Semibold.ttf -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Semibold.woff -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Semibold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Semibold.woff2 -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Semibold_Italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Semibold_Italic.eot -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Semibold_Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Semibold_Italic.ttf -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Semibold_Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Semibold_Italic.woff -------------------------------------------------------------------------------- /public/fonts/Proxima_Nova_Semibold_Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/Proxima_Nova_Semibold_Italic.woff2 -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/fonts/startui.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/startui.eot -------------------------------------------------------------------------------- /public/fonts/startui.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/startui.ttf -------------------------------------------------------------------------------- /public/fonts/startui.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/fonts/startui.woff -------------------------------------------------------------------------------- /public/img/100x100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/100x100.jpg -------------------------------------------------------------------------------- /public/img/avatar-1-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/avatar-1-128.png -------------------------------------------------------------------------------- /public/img/avatar-1-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/avatar-1-256.png -------------------------------------------------------------------------------- /public/img/avatar-1-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/avatar-1-32.png -------------------------------------------------------------------------------- /public/img/avatar-1-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/avatar-1-48.png -------------------------------------------------------------------------------- /public/img/avatar-1-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/avatar-1-64.png -------------------------------------------------------------------------------- /public/img/avatar-2-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/avatar-2-128.png -------------------------------------------------------------------------------- /public/img/avatar-2-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/avatar-2-256.png -------------------------------------------------------------------------------- /public/img/avatar-2-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/avatar-2-32.png -------------------------------------------------------------------------------- /public/img/avatar-2-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/avatar-2-48.png -------------------------------------------------------------------------------- /public/img/avatar-2-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/avatar-2-64.png -------------------------------------------------------------------------------- /public/img/avatar-3-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/avatar-3-128.png -------------------------------------------------------------------------------- /public/img/avatar-3-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/avatar-3-256.png -------------------------------------------------------------------------------- /public/img/avatar-3-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/avatar-3-32.png -------------------------------------------------------------------------------- /public/img/avatar-3-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/avatar-3-48.png -------------------------------------------------------------------------------- /public/img/avatar-3-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/avatar-3-64.png -------------------------------------------------------------------------------- /public/img/avatar-sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/avatar-sign.png -------------------------------------------------------------------------------- /public/img/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/blank.gif -------------------------------------------------------------------------------- /public/img/bst-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/bst-down.png -------------------------------------------------------------------------------- /public/img/bst-sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/bst-sort.png -------------------------------------------------------------------------------- /public/img/bst-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/bst-up.png -------------------------------------------------------------------------------- /public/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/close.png -------------------------------------------------------------------------------- /public/img/doc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/doc.jpg -------------------------------------------------------------------------------- /public/img/email_template_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/email_template_1.png -------------------------------------------------------------------------------- /public/img/email_template_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/email_template_2.png -------------------------------------------------------------------------------- /public/img/email_template_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/email_template_3.png -------------------------------------------------------------------------------- /public/img/email_template_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/email_template_4.png -------------------------------------------------------------------------------- /public/img/email_template_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/email_template_5.png -------------------------------------------------------------------------------- /public/img/email_template_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/email_template_6.png -------------------------------------------------------------------------------- /public/img/email_template_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/email_template_7.png -------------------------------------------------------------------------------- /public/img/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/fancybox_loading.gif -------------------------------------------------------------------------------- /public/img/fancybox_loading@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/fancybox_loading@2x.gif -------------------------------------------------------------------------------- /public/img/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/fancybox_overlay.png -------------------------------------------------------------------------------- /public/img/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/fancybox_sprite.png -------------------------------------------------------------------------------- /public/img/fancybox_sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/fancybox_sprite@2x.png -------------------------------------------------------------------------------- /public/img/faq-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/faq-1.png -------------------------------------------------------------------------------- /public/img/faq-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/faq-2.png -------------------------------------------------------------------------------- /public/img/faq-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/faq-3.png -------------------------------------------------------------------------------- /public/img/faq-search.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/faq-search.jpg -------------------------------------------------------------------------------- /public/img/file-doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/file-doc.png -------------------------------------------------------------------------------- /public/img/file-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/file-img.png -------------------------------------------------------------------------------- /public/img/file-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/file-pdf.png -------------------------------------------------------------------------------- /public/img/file-xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/file-xls.png -------------------------------------------------------------------------------- /public/img/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/file.png -------------------------------------------------------------------------------- /public/img/flags/1x1/ae.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/img/flags/1x1/am.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/img/flags/1x1/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/img/flags/1x1/ax.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /public/img/flags/1x1/az.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/1x1/bb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/img/flags/1x1/bd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/img/flags/1x1/be.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/1x1/bf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/1x1/bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/1x1/bh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/img/flags/1x1/bj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/img/flags/1x1/bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/1x1/bo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/1x1/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/img/flags/1x1/bs.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/img/flags/1x1/bv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/img/flags/1x1/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/1x1/cd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/img/flags/1x1/cf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /public/img/flags/1x1/cg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/img/flags/1x1/ch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /public/img/flags/1x1/ci.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/1x1/cl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/img/flags/1x1/cm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/img/flags/1x1/co.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/1x1/cr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/1x1/cu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/img/flags/1x1/cw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/img/flags/1x1/cz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/img/flags/1x1/de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/1x1/dj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/img/flags/1x1/dk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/img/flags/1x1/dz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/img/flags/1x1/ee.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/1x1/fo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/img/flags/1x1/fr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/1x1/ga.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/1x1/gb-eng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/img/flags/1x1/gb-sct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/img/flags/1x1/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/img/flags/1x1/gg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /public/img/flags/1x1/gh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/img/flags/1x1/gl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/img/flags/1x1/gm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /public/img/flags/1x1/gn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/1x1/gp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/1x1/gw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/img/flags/1x1/gy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /public/img/flags/1x1/ht.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/img/flags/1x1/hu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/1x1/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/img/flags/1x1/ie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/1x1/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | image/svg+xml 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/img/flags/1x1/ne.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/img/flags/1x1/no.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/img/flags/1x1/pl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | image/svg+xml 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/img/flags/1x1/tr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/img/flags/1x1/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | image/svg+xml 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/img/flags/1x1/zz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/img/flags/4x3/ae.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/img/flags/4x3/am.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/img/flags/4x3/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/img/flags/4x3/ax.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /public/img/flags/4x3/az.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/4x3/bb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/img/flags/4x3/bd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/img/flags/4x3/be.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/4x3/bf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/4x3/bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/4x3/bh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/img/flags/4x3/bj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/img/flags/4x3/bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/4x3/bo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/4x3/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/img/flags/4x3/bs.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/img/flags/4x3/bv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/img/flags/4x3/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/4x3/cd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/img/flags/4x3/cf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /public/img/flags/4x3/cg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/img/flags/4x3/ch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /public/img/flags/4x3/ci.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/4x3/cl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/img/flags/4x3/cm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/img/flags/4x3/co.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/4x3/cr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/4x3/cu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/img/flags/4x3/cw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/img/flags/4x3/cz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/img/flags/4x3/de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/4x3/dj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/img/flags/4x3/dk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/img/flags/4x3/ee.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/4x3/fo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/img/flags/4x3/fr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/4x3/ga.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/4x3/gb-eng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/img/flags/4x3/gb-sct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/img/flags/4x3/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/img/flags/4x3/gh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/img/flags/4x3/gl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/img/flags/4x3/gm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/img/flags/4x3/gn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/4x3/gp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/4x3/gw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/img/flags/4x3/gy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /public/img/flags/4x3/ht.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/img/flags/4x3/hu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/4x3/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/img/flags/4x3/ie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/img/flags/4x3/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | image/svg+xml 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/img/flags/4x3/ne.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/img/flags/4x3/no.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/img/flags/4x3/tr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/img/flags/4x3/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | image/svg+xml 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/img/flags/4x3/zz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/img/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/folder.png -------------------------------------------------------------------------------- /public/img/gall-img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/gall-img-1.jpg -------------------------------------------------------------------------------- /public/img/gall-img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/gall-img-2.jpg -------------------------------------------------------------------------------- /public/img/gall-img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/gall-img-3.jpg -------------------------------------------------------------------------------- /public/img/gall-img-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/gall-img-4.jpg -------------------------------------------------------------------------------- /public/img/gall-img-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/gall-img-5.jpg -------------------------------------------------------------------------------- /public/img/gall-img-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/gall-img-6.jpg -------------------------------------------------------------------------------- /public/img/gall-img-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/gall-img-7.jpg -------------------------------------------------------------------------------- /public/img/google-map-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/google-map-marker.png -------------------------------------------------------------------------------- /public/img/gradient-scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/gradient-scroll.png -------------------------------------------------------------------------------- /public/img/img-task.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/img-task.jpg -------------------------------------------------------------------------------- /public/img/logo-2-mob-caribbean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/logo-2-mob-caribbean.png -------------------------------------------------------------------------------- /public/img/logo-2-mob-inverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/logo-2-mob-inverse.png -------------------------------------------------------------------------------- /public/img/logo-2-mob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/logo-2-mob.png -------------------------------------------------------------------------------- /public/img/logo-2-white-caribbean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/logo-2-white-caribbean.png -------------------------------------------------------------------------------- /public/img/logo-2-white-inverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/logo-2-white-inverse.png -------------------------------------------------------------------------------- /public/img/logo-2-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/logo-2-white.png -------------------------------------------------------------------------------- /public/img/logo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/logo-2.png -------------------------------------------------------------------------------- /public/img/photo-184-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/photo-184-1.jpg -------------------------------------------------------------------------------- /public/img/photo-220-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/photo-220-1.jpg -------------------------------------------------------------------------------- /public/img/photo-64-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/photo-64-1.jpg -------------------------------------------------------------------------------- /public/img/photo-64-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/photo-64-2.jpg -------------------------------------------------------------------------------- /public/img/photo-64-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/photo-64-3.jpg -------------------------------------------------------------------------------- /public/img/photo-64-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/photo-64-4.jpg -------------------------------------------------------------------------------- /public/img/photo-92-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/photo-92-1.jpg -------------------------------------------------------------------------------- /public/img/photo-92-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/photo-92-2.jpg -------------------------------------------------------------------------------- /public/img/photo-92-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/photo-92-3.jpg -------------------------------------------------------------------------------- /public/img/pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/pic.jpg -------------------------------------------------------------------------------- /public/img/player-controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/player-controls.png -------------------------------------------------------------------------------- /public/img/player-photo-b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/player-photo-b.jpg -------------------------------------------------------------------------------- /public/img/player-photo-s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/player-photo-s.jpg -------------------------------------------------------------------------------- /public/img/post-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/post-1.jpeg -------------------------------------------------------------------------------- /public/img/post-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/post-2.jpg -------------------------------------------------------------------------------- /public/img/post-3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/post-3.jpeg -------------------------------------------------------------------------------- /public/img/profile-bg-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/profile-bg-light.jpg -------------------------------------------------------------------------------- /public/img/profile-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/profile-bg.jpg -------------------------------------------------------------------------------- /public/img/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/smile.png -------------------------------------------------------------------------------- /public/img/statistic-box-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/statistic-box-green.png -------------------------------------------------------------------------------- /public/img/statistic-box-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/statistic-box-grid.png -------------------------------------------------------------------------------- /public/img/statistic-box-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/statistic-box-purple.png -------------------------------------------------------------------------------- /public/img/statistic-box-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/statistic-box-red.png -------------------------------------------------------------------------------- /public/img/statistic-box-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/statistic-box-yellow.png -------------------------------------------------------------------------------- /public/img/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/user.jpg -------------------------------------------------------------------------------- /public/img/video-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/video-preview.jpg -------------------------------------------------------------------------------- /public/img/widget-user-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anders87x/Tutorial_HelpDesk/888de3213a3ac6bf5ac3b93791e24e506d5cbd62/public/img/widget-user-bg.jpg -------------------------------------------------------------------------------- /public/js/lib/bootstrap-maxlength/bootstrap-maxlength-init.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | $('input.maxlength-simple').maxlength(); 3 | 4 | $('input.maxlength-custom-message').maxlength({ 5 | threshold: 10, 6 | warningClass: "label label-success", 7 | limitReachedClass: "label label-danger", 8 | separator: ' of ', 9 | preText: 'You have ', 10 | postText: ' chars remaining.', 11 | validate: true 12 | }); 13 | 14 | $('input.maxlength-always-show').maxlength({ 15 | alwaysShow: true 16 | }); 17 | 18 | $('textarea.maxlength-simple').maxlength({ 19 | alwaysShow: true 20 | }); 21 | }); 22 | -------------------------------------------------------------------------------- /public/js/lib/bootstrap-select/i18n/defaults-cs_CZ.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.9.4 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2016 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nic není vybráno",noneResultsText:"Žádné výsledky {0}",countSelectedText:"Označeno {0} z {1}",maxOptionsText:["Limit překročen ({n} {var} max)","Limit skupiny překročen ({n} {var} max)",["položek","položka"]],multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /public/js/lib/bootstrap-select/i18n/defaults-de_DE.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.9.4 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2016 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Bitte wählen...",noneResultsText:"Keine Ergebnisse für {0}",countSelectedText:"{0} von {1} ausgewählt",maxOptionsText:["Limit erreicht ({n} {var} max.)","Gruppen-Limit erreicht ({n} {var} max.)",["Eintrag","Einträge"]],multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /public/js/lib/bootstrap-select/i18n/defaults-es_CL.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.9.4 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2016 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"No hay selección",noneResultsText:"No hay resultados {0}",countSelectedText:"Seleccionados {0} de {1}",maxOptionsText:["Límite alcanzado ({n} {var} max)","Límite del grupo alcanzado({n} {var} max)",["elementos","element"]],multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /public/js/lib/bootstrap-select/i18n/defaults-eu.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.9.4 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2016 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Hautapenik ez",noneResultsText:"Emaitzarik ez {0}",countSelectedText:"{1}(e)tik {0} hautatuta",maxOptionsText:["Mugara iritsita ({n} {var} gehienez)","Taldearen mugara iritsita ({n} {var} gehienez)",["elementu","elementu"]],multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /public/js/lib/bootstrap-select/i18n/defaults-fa_IR.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.9.4 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2016 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"چیزی انتخاب نشده است",noneResultsText:"هیج مشابهی برای {0} پیدا نشد",countSelectedText:"{0} از {1} مورد انتخاب شده",maxOptionsText:["بیشتر ممکن نیست {حداکثر {n} عدد}","بیشتر ممکن نیست {حداکثر {n} عدد}"],selectAllText:"انتخاب همه",deselectAllText:"انتخاب هیچ کدام",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /public/js/lib/bootstrap-select/i18n/defaults-fi_FI.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.9.4 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2016 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Ei valintoja",noneResultsText:"Ei hakutuloksia {0}",countSelectedText:function(a,b){return 1==a?"{0} valittu":"{0} valitut"},maxOptionsText:function(a,b){return["Valintojen maksimimäärä ({n} saavutettu)","Ryhmän maksimimäärä ({n} saavutettu)"]},selectAllText:"Valitse kaikki",deselectAllText:"Poista kaikki",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /public/js/lib/bootstrap-select/i18n/defaults-hu_HU.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.9.4 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2016 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Válasszon!",noneResultsText:"Nincs találat {0}",countSelectedText:function(a,b){return"{0} elem kiválasztva"},maxOptionsText:function(a,b){return["Legfeljebb {n} elem választható","A csoportban legfeljebb {n} elem választható"]},selectAllText:"Mind",deselectAllText:"Egyik sem",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /public/js/lib/bootstrap-select/i18n/defaults-id_ID.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.9.4 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2016 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Tidak ada yang dipilih",noneResultsText:"Tidak ada yang cocok {0}",countSelectedText:"{0} terpilih",maxOptionsText:["Mencapai batas (maksimum {n})","Mencapai batas grup (maksimum {n})"],selectAllText:"Pilih Semua",deselectAllText:"Hapus Semua",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /public/js/lib/bootstrap-select/i18n/defaults-it_IT.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.9.4 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2016 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nessuna selezione",noneResultsText:"Nessun risultato per {0}",countSelectedText:"Selezionati {0} di {1}",maxOptionsText:["Limite raggiunto ({n} {var} max)","Limite del gruppo raggiunto ({n} {var} max)",["elementi","elemento"]],multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /public/js/lib/bootstrap-select/i18n/defaults-ko_KR.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.9.4 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2016 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"항목을 선택해주세요",noneResultsText:"{0} 검색 결과가 없습니다",countSelectedText:function(a,b){return"{0}개를 선택하였습니다"},maxOptionsText:function(a,b){return["{n}개까지 선택 가능합니다","해당 그룹은 {n}개까지 선택 가능합니다"]},selectAllText:"전체선택",deselectAllText:"전체해제",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /public/js/lib/bootstrap-select/i18n/defaults-nl_NL.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.9.4 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2016 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Niets geselecteerd",noneResultsText:"Geen resultaten gevonden voor {0}",countSelectedText:"{0} van {1} geselecteerd",maxOptionsText:["Limiet bereikt ({n} {var} max)","Groep limiet bereikt ({n} {var} max)",["items","item"]],multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /public/js/lib/bootstrap-select/i18n/defaults-pl_PL.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.9.4 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2016 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nic nie zaznaczono",noneResultsText:"Brak wyników wyszukiwania {0}",countSelectedText:"Zaznaczono {0} z {1}",maxOptionsText:["Osiągnięto limit ({n} {var} max)","Limit grupy osiągnięty ({n} {var} max)",["elementy","element"]],selectAll:"Zaznacz wszystkie",deselectAll:"Odznacz wszystkie",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /public/js/lib/bootstrap-select/i18n/defaults-pt_BR.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.9.4 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2016 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nada selecionado",noneResultsText:"Nada encontrado contendo {0}",countSelectedText:"Selecionado {0} de {1}",maxOptionsText:["Limite excedido (máx. {n} {var})","Limite do grupo excedido (máx. {n} {var})",["itens","item"]],multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /public/js/lib/bootstrap-select/i18n/defaults-pt_PT.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.9.4 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2016 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nenhum seleccionado",noneResultsText:"Sem resultados contendo {0}",countSelectedText:"Selecionado {0} de {1}",maxOptionsText:["Limite ultrapassado (máx. {n} {var})","Limite de seleções ultrapassado (máx. {n} {var})",["itens","item"]],multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /public/js/lib/bootstrap-select/i18n/defaults-ro_RO.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.9.4 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2016 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nu a fost selectat nimic",noneResultsText:"Nu exista niciun rezultat {0}",countSelectedText:"{0} din {1} selectat(e)",maxOptionsText:["Limita a fost atinsa ({n} {var} max)","Limita de grup a fost atinsa ({n} {var} max)",["iteme","item"]],multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /public/js/lib/bootstrap-select/i18n/defaults-ru_RU.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.9.4 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2016 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Ничего не выбрано",noneResultsText:"Совпадений не найдено {0}",countSelectedText:"Выбрано {0} из {1}",maxOptionsText:["Достигнут предел ({n} {var} максимум)","Достигнут предел в группе ({n} {var} максимум)",["items","item"]],doneButtonText:"Закрыть",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /public/js/lib/bootstrap-select/i18n/defaults-sk_SK.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.9.4 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2016 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Vyberte zo zoznamu",noneResultsText:"Pre výraz {0} neboli nájdené žiadne výsledky",countSelectedText:"Vybrané {0} z {1}",maxOptionsText:["Limit prekročený ({n} {var} max)","Limit skupiny prekročený ({n} {var} max)",["položiek","položka"]],selectAllText:"Vybrať všetky",deselectAllText:"Zrušiť výber",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /public/js/lib/bootstrap-select/i18n/defaults-sl_SI.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.9.4 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2016 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nič izbranega",noneResultsText:"Ni zadetkov za {0}",countSelectedText:function(a,b){"Število izbranih: {0}"},maxOptionsText:function(a,b){return["Omejitev dosežena (max. izbranih: {n})","Omejitev skupine dosežena (max. izbranih: {n})"]},selectAllText:"Izberi vse",deselectAllText:"Počisti izbor",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /public/js/lib/bootstrap-select/i18n/defaults-sv_SE.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.9.4 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2016 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Inget valt",noneResultsText:"Inget sökresultat matchar {0}",countSelectedText:function(a,b){return 1===a?"{0} alternativ valt":"{0} alternativ valda"},maxOptionsText:function(a,b){return["Gräns uppnåd (max {n} alternativ)","Gräns uppnåd (max {n} gruppalternativ)"]},selectAllText:"Markera alla",deselectAllText:"Avmarkera alla",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /public/js/lib/bootstrap-select/i18n/defaults-ua_UA.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.9.4 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2016 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Нічого не вибрано",noneResultsText:"Збігів не знайдено {0}",countSelectedText:"Вибрано {0} із {1}",maxOptionsText:["Досягнута межа ({n} {var} максимум)","Досягнута межа в групі ({n} {var} максимум)",["items","item"]],multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /public/js/lib/bootstrap-select/i18n/defaults-zh_CN.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.9.4 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2016 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"没有选中任何项",noneResultsText:"没有找到匹配项",countSelectedText:"选中{1}中的{0}项",maxOptionsText:["超出限制 (最多选择{n}项)","组选择超出限制(最多选择{n}组)"],multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /public/js/lib/bootstrap-select/i18n/defaults-zh_TW.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.9.4 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2016 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"沒有選取任何項目",noneResultsText:"沒有找到符合的結果",countSelectedText:"已經選取{0}個項目",maxOptionsText:["超過限制 (最多選擇{n}項)","超過限制(最多選擇{n}組)"],selectAllText:"選取全部",deselectAllText:"全部取消",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /public/js/lib/bootstrap-table/bootstrap-table-mobile-init.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | var $table = $('#table'); 3 | var data = []; 4 | 5 | for (var i = 1; i <= 40; i++) { 6 | data.push({ 7 | "id": i, 8 | "name": "Status " + i, 9 | "price": "$" + Math.ceil(Math.random() * 100) 10 | }); 11 | } 12 | 13 | $table.bootstrapTable({ 14 | iconsPrefix: 'font-icon', 15 | icons: { 16 | columns: 'font-icon-list-rotate' 17 | }, 18 | paginationPreText: '', 19 | paginationNextText: '', 20 | data: data 21 | }); 22 | }); 23 | -------------------------------------------------------------------------------- /public/js/lib/bootstrap-table/bootstrap-table-reorder-rows-init.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | var $table = $('#table'); 3 | var data = []; 4 | 5 | for (var i = 1; i <= 40; i++) { 6 | data.push({ 7 | "id": i, 8 | "name": "Status " + i, 9 | "price": "$" + Math.ceil(Math.random() * 100) 10 | }); 11 | } 12 | 13 | $table.bootstrapTable({ 14 | iconsPrefix: 'font-icon', 15 | paginationPreText: '', 16 | paginationNextText: '', 17 | data: data 18 | }); 19 | }); 20 | -------------------------------------------------------------------------------- /public/js/lib/clickout/jquery.clickout.js: -------------------------------------------------------------------------------- 1 | (function(jQuery) { 2 | jQuery.fn.clickoutside = function(callback) { 3 | var outside = 1, self = $(this); 4 | self.cb = callback; 5 | this.click(function() { 6 | outside = 0; 7 | }); 8 | $(document).click(function() { 9 | outside && self.cb(); 10 | outside = 1; 11 | }); 12 | return $(this); 13 | } 14 | })(jQuery); 15 | -------------------------------------------------------------------------------- /public/js/lib/clockpicker/bootstrap-clockpicker-init.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | $('.clockpicker').clockpicker({ 3 | autoclose: true, 4 | donetext: 'Done', 5 | 'default': 'now' 6 | }); 7 | }); 8 | -------------------------------------------------------------------------------- /public/js/lib/datatables-net/autofill-2.1.2/js/autoFill.bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Bootstrap integration for DataTables' AutoFill 3 | ©2015 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(a){"function"===typeof define&&define.amd?define(["jquery","datatables.net-bs","datatables.net-autofill"],function(b){return a(b,window,document)}):"object"===typeof exports?module.exports=function(b,c){b||(b=window);if(!c||!c.fn.dataTable)c=require("datatables.net-bs")(b,c).$;c.fn.dataTable.AutoFill||require("datatables.net-autofill")(b,c);return a(c,b,b.document)}:a(jQuery,window,document)})(function(a){a=a.fn.dataTable;a.AutoFill.classes.btn="btn btn-primary";return a}); 6 | -------------------------------------------------------------------------------- /public/js/lib/hide-show-password/bootstrap-show-password-init.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | $('#hide-show-password').password(); 3 | }); 4 | -------------------------------------------------------------------------------- /public/js/lib/input-mask/input-mask-init.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | $('#date-mask-input').mask("00/00/0000", {placeholder: "__/__/____"}); 3 | $('#time-mask-input').mask('00:00:00', {placeholder: "__:__:__"}); 4 | $('#date-and-time-mask-input').mask('00/00/0000 00:00:00', {placeholder: "__/__/____ __:__:__"}); 5 | $('#zip-code-mask-input').mask('00000-000', {placeholder: "_____-___"}); 6 | $('#money-mask-input').mask('000.000.000.000.000,00', {reverse: true}); 7 | $('#phone-mask-input').mask('0000-0000', {placeholder: "____-____"}); 8 | $('#phone-with-code-area-mask-input').mask('(00) 0000-0000', {placeholder: "(__) ____-____"}); 9 | $('#us-phone-mask-input').mask('(000) 000-0000', {placeholder: "(___) ___-____"}); 10 | $('#ip-address-mask-input').mask('099.099.099.099'); 11 | $('#mixed-mask-input').mask('AAA 000-S0S'); 12 | }); 13 | -------------------------------------------------------------------------------- /public/js/lib/jquery-validation/localization/methods_de.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else if (typeof module === "object" && module.exports) { 5 | module.exports = factory( require( "jquery" ) ); 6 | } else { 7 | factory( jQuery ); 8 | } 9 | }(function( $ ) { 10 | 11 | /* 12 | * Localized default methods for the jQuery validation plugin. 13 | * Locale: DE 14 | */ 15 | $.extend( $.validator.methods, { 16 | date: function( value, element ) { 17 | return this.optional( element ) || /^\d\d?\.\d\d?\.\d\d\d?\d?$/.test( value ); 18 | }, 19 | number: function( value, element ) { 20 | return this.optional( element ) || /^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test( value ); 21 | } 22 | } ); 23 | 24 | })); -------------------------------------------------------------------------------- /public/js/lib/jquery-validation/localization/methods_de.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.15.0 - 2/24/2016 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2016 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):"object"==typeof module&&module.exports?module.exports=a(require("jquery")):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d\d?\.\d\d?\.\d\d\d?\d?$/.test(a)},number:function(a,b){return this.optional(b)||/^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(a)}})}); -------------------------------------------------------------------------------- /public/js/lib/jquery-validation/localization/methods_es_CL.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else if (typeof module === "object" && module.exports) { 5 | module.exports = factory( require( "jquery" ) ); 6 | } else { 7 | factory( jQuery ); 8 | } 9 | }(function( $ ) { 10 | 11 | /* 12 | * Localized default methods for the jQuery validation plugin. 13 | * Locale: ES_CL 14 | */ 15 | $.extend( $.validator.methods, { 16 | date: function( value, element ) { 17 | return this.optional( element ) || /^\d\d?\-\d\d?\-\d\d\d?\d?$/.test( value ); 18 | }, 19 | number: function( value, element ) { 20 | return this.optional( element ) || /^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test( value ); 21 | } 22 | } ); 23 | 24 | })); -------------------------------------------------------------------------------- /public/js/lib/jquery-validation/localization/methods_es_CL.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.15.0 - 2/24/2016 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2016 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):"object"==typeof module&&module.exports?module.exports=a(require("jquery")):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d\d?\-\d\d?\-\d\d\d?\d?$/.test(a)},number:function(a,b){return this.optional(b)||/^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(a)}})}); -------------------------------------------------------------------------------- /public/js/lib/jquery-validation/localization/methods_fi.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else if (typeof module === "object" && module.exports) { 5 | module.exports = factory( require( "jquery" ) ); 6 | } else { 7 | factory( jQuery ); 8 | } 9 | }(function( $ ) { 10 | 11 | /* 12 | * Localized default methods for the jQuery validation plugin. 13 | * Locale: FI 14 | */ 15 | $.extend( $.validator.methods, { 16 | date: function( value, element ) { 17 | return this.optional( element ) || /^\d{1,2}\.\d{1,2}\.\d{4}$/.test( value ); 18 | }, 19 | number: function( value, element ) { 20 | return this.optional( element ) || /^-?(?:\d+)(?:,\d+)?$/.test( value ); 21 | } 22 | } ); 23 | 24 | })); -------------------------------------------------------------------------------- /public/js/lib/jquery-validation/localization/methods_fi.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.15.0 - 2/24/2016 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2016 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):"object"==typeof module&&module.exports?module.exports=a(require("jquery")):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d{1,2}\.\d{1,2}\.\d{4}$/.test(a)},number:function(a,b){return this.optional(b)||/^-?(?:\d+)(?:,\d+)?$/.test(a)}})}); -------------------------------------------------------------------------------- /public/js/lib/jquery-validation/localization/methods_nl.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else if (typeof module === "object" && module.exports) { 5 | module.exports = factory( require( "jquery" ) ); 6 | } else { 7 | factory( jQuery ); 8 | } 9 | }(function( $ ) { 10 | 11 | /* 12 | * Localized default methods for the jQuery validation plugin. 13 | * Locale: NL 14 | */ 15 | $.extend( $.validator.methods, { 16 | date: function( value, element ) { 17 | return this.optional( element ) || /^\d\d?[\.\/\-]\d\d?[\.\/\-]\d\d\d?\d?$/.test( value ); 18 | } 19 | } ); 20 | 21 | })); -------------------------------------------------------------------------------- /public/js/lib/jquery-validation/localization/methods_nl.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.15.0 - 2/24/2016 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2016 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):"object"==typeof module&&module.exports?module.exports=a(require("jquery")):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d\d?[\.\/\-]\d\d?[\.\/\-]\d\d\d?\d?$/.test(a)}})}); -------------------------------------------------------------------------------- /public/js/lib/jquery-validation/localization/methods_pt.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else if (typeof module === "object" && module.exports) { 5 | module.exports = factory( require( "jquery" ) ); 6 | } else { 7 | factory( jQuery ); 8 | } 9 | }(function( $ ) { 10 | 11 | /* 12 | * Localized default methods for the jQuery validation plugin. 13 | * Locale: PT_BR 14 | */ 15 | $.extend( $.validator.methods, { 16 | date: function( value, element ) { 17 | return this.optional( element ) || /^\d\d?\/\d\d?\/\d\d\d?\d?$/.test( value ); 18 | } 19 | } ); 20 | 21 | })); -------------------------------------------------------------------------------- /public/js/lib/jquery-validation/localization/methods_pt.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.15.0 - 2/24/2016 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2016 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):"object"==typeof module&&module.exports?module.exports=a(require("jquery")):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d\d?\/\d\d?\/\d\d\d?\d?$/.test(a)}})}); -------------------------------------------------------------------------------- /public/js/lib/ladda-button/ladda-button-init.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | Ladda.bind( 'div:not(.progress-demo) button.ladda-button', { timeout: 2000 } ); 3 | 4 | // Bind progress buttons and simulate loading progress 5 | Ladda.bind( '.progress-demo button.ladda-button', { 6 | callback: function( instance ) { 7 | var progress = 0; 8 | var interval = setInterval( function() { 9 | progress = Math.min( progress + Math.random() * 0.1, 1 ); 10 | instance.setProgress( progress ); 11 | 12 | if( progress === 1 ) { 13 | instance.stop(); 14 | clearInterval( interval ); 15 | } 16 | }, 200 ); 17 | } 18 | } ); 19 | 20 | }); 21 | -------------------------------------------------------------------------------- /public/js/lib/responsive-bootstrap-toolkit/bootstrap-toolkit-1.5.0.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Responsive Bootstrap Toolkit 3 | * Author: Maciej Gurban 4 | * License: MIT 5 | * Version: 1.5.0 (2014-06-05) 6 | * Origin: https://github.com/maciej-gurban/responsive-bootstrap-toolkit 7 | */ 8 | ;var ResponsiveBootstrapToolkit=function(c){return{clock:{express:150,fast:300,medium:450,slow:600},timeString:new Date,isBreakpoint:function(a){return c(".device-"+a).is(":visible")},waitForFinalEvent:function(){var a={};return function(c,d,b){b=b?null:"I'm a banana!";a[b]&&clearTimeout(a[b]);a[b]=setTimeout(c,d)}}()}}(jQuery); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/ar.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ar",[],function(){return{errorLoading:function(){return"لا يمكن تحميل النتائج"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="الرجاء حذف "+t+" عناصر";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="الرجاء إضافة "+t+" عناصر";return n},loadingMore:function(){return"جاري تحميل نتائج إضافية..."},maximumSelected:function(e){var t="تستطيع إختيار "+e.maximum+" بنود فقط";return t},noResults:function(){return"لم يتم العثور على أي نتائج"},searching:function(){return"جاري البحث…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/az.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/az",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return t+" simvol silin"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t+" simvol daxil edin"},loadingMore:function(){return"Daha çox nəticə yüklənir…"},maximumSelected:function(e){return"Sadəcə "+e.maximum+" element seçə bilərsiniz"},noResults:function(){return"Nəticə tapılmadı"},searching:function(){return"Axtarılır…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/bg.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/bg",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Моля въведете с "+t+" по-малко символ";return t>1&&(n+="a"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Моля въведете още "+t+" символ";return t>1&&(n+="a"),n},loadingMore:function(){return"Зареждат се още…"},maximumSelected:function(e){var t="Можете да направите до "+e.maximum+" ";return e.maximum>1?t+="избора":t+="избор",t},noResults:function(){return"Няма намерени съвпадения"},searching:function(){return"Търсене…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/da.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/da",[],function(){return{errorLoading:function(){return"Resultaterne kunne ikke indlæses."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Angiv venligst "+t+" tegn mindre";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Angiv venligst "+t+" tegn mere";return n},loadingMore:function(){return"Indlæser flere resultater…"},maximumSelected:function(e){var t="Du kan kun vælge "+e.maximum+" emne";return e.maximum!=1&&(t+="r"),t},noResults:function(){return"Ingen resultater fundet"},searching:function(){return"Søger…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/de.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/de",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Bitte "+t+" Zeichen weniger eingeben"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Bitte "+t+" Zeichen mehr eingeben"},loadingMore:function(){return"Lade mehr Ergebnisse…"},maximumSelected:function(e){var t="Sie können nur "+e.maximum+" Eintr";return e.maximum===1?t+="ag":t+="äge",t+=" auswählen",t},noResults:function(){return"Keine Übereinstimmungen gefunden"},searching:function(){return"Suche…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/en.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/en",[],function(){return{errorLoading:function(){return"The results could not be loaded."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Please delete "+t+" character";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Please enter "+t+" or more characters";return n},loadingMore:function(){return"Loading more results…"},maximumSelected:function(e){var t="You can only select "+e.maximum+" item";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No results found"},searching:function(){return"Searching…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/es.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/es",[],function(){return{errorLoading:function(){return"La carga falló"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor, elimine "+t+" car";return t==1?n+="ácter":n+="acteres",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Por favor, introduzca "+t+" car";return t==1?n+="ácter":n+="acteres",n},loadingMore:function(){return"Cargando más resultados…"},maximumSelected:function(e){var t="Sólo puede seleccionar "+e.maximum+" elemento";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No se encontraron resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/et.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/et",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" vähem",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" rohkem",n},loadingMore:function(){return"Laen tulemusi…"},maximumSelected:function(e){var t="Saad vaid "+e.maximum+" tulemus";return e.maximum==1?t+="e":t+="t",t+=" valida",t},noResults:function(){return"Tulemused puuduvad"},searching:function(){return"Otsin…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/eu.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/eu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gutxiago",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gehiago",n},loadingMore:function(){return"Emaitza gehiago kargatzen…"},maximumSelected:function(e){return e.maximum===1?"Elementu bakarra hauta dezakezu":e.maximum+" elementu hauta ditzakezu soilik"},noResults:function(){return"Ez da bat datorrenik aurkitu"},searching:function(){return"Bilatzen…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/fa.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fa",[],function(){return{errorLoading:function(){return"امکان بارگذاری نتایج وجود ندارد."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="لطفاً "+t+" کاراکتر را حذف نمایید";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="لطفاً تعداد "+t+" کاراکتر یا بیشتر وارد نمایید";return n},loadingMore:function(){return"در حال بارگذاری نتایج بیشتر..."},maximumSelected:function(e){var t="شما تنها می‌توانید "+e.maximum+" آیتم را انتخاب نمایید";return t},noResults:function(){return"هیچ نتیجه‌ای یافت نشد"},searching:function(){return"در حال جستجو..."}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/fi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Ole hyvä ja anna "+t+" merkkiä vähemmän"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Ole hyvä ja anna "+t+" merkkiä lisää"},loadingMore:function(){return"Ladataan lisää tuloksia…"},maximumSelected:function(e){return"Voit valita ainoastaan "+e.maximum+" kpl"},noResults:function(){return"Ei tuloksia"},searching:function(){}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/gl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/gl",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Elimine ";return t===1?n+="un carácter":n+=t+" caracteres",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Engada ";return t===1?n+="un carácter":n+=t+" caracteres",n},loadingMore:function(){return"Cargando máis resultados…"},maximumSelected:function(e){var t="Só pode ";return e.maximum===1?t+="un elemento":t+=e.maximum+" elementos",t},noResults:function(){return"Non se atoparon resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/he.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/he",[],function(){return{errorLoading:function(){return"שגיאה בטעינת התוצאות"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="נא למחוק ";return t===1?n+="תו אחד":n+=t+" תווים",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="נא להכניס ";return t===1?n+="תו אחד":n+=t+" תווים",n+=" או יותר",n},loadingMore:function(){return"טוען תוצאות נוספות…"},maximumSelected:function(e){var t="באפשרותך לבחור עד ";return e.maximum===1?t+="פריט אחד":t+=e.maximum+" פריטים",t},noResults:function(){return"לא נמצאו תוצאות"},searching:function(){return"מחפש…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/hi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hi",[],function(){return{errorLoading:function(){return"परिणामों को लोड नहीं किया जा सका।"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" अक्षर को हटा दें";return t>1&&(n=t+" अक्षरों को हटा दें "),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="कृपया "+t+" या अधिक अक्षर दर्ज करें";return n},loadingMore:function(){return"अधिक परिणाम लोड हो रहे है..."},maximumSelected:function(e){var t="आप केवल "+e.maximum+" आइटम का चयन कर सकते हैं";return t},noResults:function(){return"कोई परिणाम नहीं मिला"},searching:function(){return"खोज रहा है..."}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/hr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hr",[],function(){function e(e){var t=" "+e+" znak";return e%10<5&&e%10>0&&(e%100<5||e%100>19)?e%10>1&&(t+="a"):t+="ova",t}return{errorLoading:function(){return"Preuzimanje nije uspjelo."},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Unesite "+e(n)},inputTooShort:function(t){var n=t.minimum-t.input.length;return"Unesite još "+e(n)},loadingMore:function(){return"Učitavanje rezultata…"},maximumSelected:function(e){return"Maksimalan broj odabranih stavki je "+e.maximum},noResults:function(){return"Nema rezultata"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/hu.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Túl hosszú. "+t+" karakterrel több, mint kellene."},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Túl rövid. Még "+t+" karakter hiányzik."},loadingMore:function(){return"Töltés…"},maximumSelected:function(e){return"Csak "+e.maximum+" elemet lehet kiválasztani."},noResults:function(){return"Nincs találat."},searching:function(){return"Keresés…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/id.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/id",[],function(){return{errorLoading:function(){return"Data tidak boleh diambil."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Hapuskan "+t+" huruf"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Masukkan "+t+" huruf lagi"},loadingMore:function(){return"Mengambil data…"},maximumSelected:function(e){return"Anda hanya dapat memilih "+e.maximum+" pilihan"},noResults:function(){return"Tidak ada data yang sesuai"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/is.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/is",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vinsamlegast styttið texta um "+t+" staf";return t<=1?n:n+"i"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vinsamlegast skrifið "+t+" staf";return t>1&&(n+="i"),n+=" í viðbót",n},loadingMore:function(){return"Sæki fleiri niðurstöður…"},maximumSelected:function(e){return"Þú getur aðeins valið "+e.maximum+" atriði"},noResults:function(){return"Ekkert fannst"},searching:function(){return"Leita…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/ja.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ja",[],function(){return{errorLoading:function(){return"結果が読み込まれませんでした"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" 文字を削除してください";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="少なくとも "+t+" 文字を入力してください";return n},loadingMore:function(){return"読み込み中…"},maximumSelected:function(e){var t=e.maximum+" 件しか選択できません";return t},noResults:function(){return"対象が見つかりません"},searching:function(){return"検索しています…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/km.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/km",[],function(){return{errorLoading:function(){return"មិនអាចទាញយកទិន្នន័យ"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="សូមលុបចេញ "+t+" អក្សរ";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="សូមបញ្ចូល"+t+" អក្សរ រឺ ច្រើនជាងនេះ";return n},loadingMore:function(){return"កំពុងទាញយកទិន្នន័យបន្ថែម..."},maximumSelected:function(e){var t="អ្នកអាចជ្រើសរើសបានតែ "+e.maximum+" ជម្រើសប៉ុណ្ណោះ";return t},noResults:function(){return"មិនមានលទ្ធផល"},searching:function(){return"កំពុងស្វែងរក..."}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/ko.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ko",[],function(){return{errorLoading:function(){return"결과를 불러올 수 없습니다."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="너무 깁니다. "+t+" 글자 지워주세요.";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="너무 짧습니다. "+t+" 글자 더 입력해주세요.";return n},loadingMore:function(){return"불러오는 중…"},maximumSelected:function(e){var t="최대 "+e.maximum+"개까지만 선택 가능합니다.";return t},noResults:function(){return"결과가 없습니다."},searching:function(){return"검색 중…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/lv.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/lv",[],function(){function e(e,t,n,r){return e===11?t:e%10===1?n:r}return{inputTooLong:function(t){var n=t.input.length-t.maximum,r="Lūdzu ievadiet par "+n;return r+=" simbol"+e(n,"iem","u","iem"),r+" mazāk"},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Lūdzu ievadiet vēl "+n;return r+=" simbol"+e(n,"us","u","us"),r},loadingMore:function(){return"Datu ielāde…"},maximumSelected:function(t){var n="Jūs varat izvēlēties ne vairāk kā "+t.maximum;return n+=" element"+e(t.maximum,"us","u","us"),n},noResults:function(){return"Sakritību nav"},searching:function(){return"Meklēšana…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/mk.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/mk",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Ве молиме внесете "+e.maximum+" помалку карактер";return e.maximum!==1&&(n+="и"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Ве молиме внесете уште "+e.maximum+" карактер";return e.maximum!==1&&(n+="и"),n},loadingMore:function(){return"Вчитување резултати…"},maximumSelected:function(e){var t="Можете да изберете само "+e.maximum+" ставк";return e.maximum===1?t+="а":t+="и",t},noResults:function(){return"Нема пронајдено совпаѓања"},searching:function(){return"Пребарување…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/ms.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ms",[],function(){return{errorLoading:function(){return"Keputusan tidak berjaya dimuatkan."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Sila hapuskan "+t+" aksara"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Sila masukkan "+t+" atau lebih aksara"},loadingMore:function(){return"Sedang memuatkan keputusan…"},maximumSelected:function(e){return"Anda hanya boleh memilih "+e.maximum+" pilihan"},noResults:function(){return"Tiada padanan yang ditemui"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/nb.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nb",[],function(){return{errorLoading:function(){return"Kunne ikke hente resultater."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Vennligst fjern "+t+" tegn"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vennligst skriv inn ";return t>1?n+=" flere tegn":n+=" tegn til",n},loadingMore:function(){return"Laster flere resultater…"},maximumSelected:function(e){return"Du kan velge maks "+e.maximum+" elementer"},noResults:function(){return"Ingen treff"},searching:function(){return"Søker…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/pt-BR.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt-BR",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Apague "+t+" caracter";return t!=1&&(n+="es"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Digite "+t+" ou mais caracteres";return n},loadingMore:function(){return"Carregando mais resultados…"},maximumSelected:function(e){var t="Você só pode selecionar "+e.maximum+" ite";return e.maximum==1?t+="m":t+="ns",t},noResults:function(){return"Nenhum resultado encontrado"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/pt.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor apague "+t+" ";return n+=t!=1?"caracteres":"carácter",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Introduza "+t+" ou mais caracteres";return n},loadingMore:function(){return"A carregar mais resultados…"},maximumSelected:function(e){var t="Apenas pode seleccionar "+e.maximum+" ";return t+=e.maximum!=1?"itens":"item",t},noResults:function(){return"Sem resultados"},searching:function(){return"A procurar…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/sv.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sv",[],function(){return{errorLoading:function(){return"Resultat kunde inte laddas."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vänligen sudda ut "+t+" tecken";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vänligen skriv in "+t+" eller fler tecken";return n},loadingMore:function(){return"Laddar fler resultat…"},maximumSelected:function(e){var t="Du kan max välja "+e.maximum+" element";return t},noResults:function(){return"Inga träffar"},searching:function(){return"Söker…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/th.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/th",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="โปรดลบออก "+t+" ตัวอักษร";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="โปรดพิมพ์เพิ่มอีก "+t+" ตัวอักษร";return n},loadingMore:function(){return"กำลังค้นข้อมูลเพิ่ม…"},maximumSelected:function(e){var t="คุณสามารถเลือกได้ไม่เกิน "+e.maximum+" รายการ";return t},noResults:function(){return"ไม่พบข้อมูล"},searching:function(){return"กำลังค้นข้อมูล…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/tr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/tr",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" karakter daha girmelisiniz";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="En az "+t+" karakter daha girmelisiniz";return n},loadingMore:function(){return"Daha fazla…"},maximumSelected:function(e){var t="Sadece "+e.maximum+" seçim yapabilirsiniz";return t},noResults:function(){return"Sonuç bulunamadı"},searching:function(){return"Aranıyor…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/vi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/vi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vui lòng nhập ít hơn "+t+" ký tự";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vui lòng nhập nhiều hơn "+t+' ký tự"';return n},loadingMore:function(){return"Đang lấy thêm kết quả…"},maximumSelected:function(e){var t="Chỉ có thể chọn được "+e.maximum+" lựa chọn";return t},noResults:function(){return"Không tìm thấy kết quả"},searching:function(){return"Đang tìm…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="请删除"+t+"个字符";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="请再输入至少"+t+"个字符";return n},loadingMore:function(){return"载入更多结果…"},maximumSelected:function(e){var t="最多只能选择"+e.maximum+"个项目";return t},noResults:function(){return"未找到结果"},searching:function(){return"搜索中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/js/lib/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-TW",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="請刪掉"+t+"個字元";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="請再輸入"+t+"個字元";return n},loadingMore:function(){return"載入中…"},maximumSelected:function(e){var t="你只能選擇最多"+e.maximum+"項";return t},noResults:function(){return"沒有找到相符的項目"},searching:function(){return"搜尋中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /view/Logout/logout.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /view/MainJs/js.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /view/MntPerfil/mntperfil.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | $(document).on("click","#btnactualizar", function(){ 4 | var pass = $("#txtpass").val(); 5 | var newpass = $("#txtpassnew").val(); 6 | 7 | if (pass.length == 0 || newpass.length == 0) { 8 | swal("Error!", "Campos Vacios", "error"); 9 | }else{ 10 | if (pass==newpass){ 11 | 12 | var usu_id = $('#user_idx').val(); 13 | $.post("../../controller/usuario.php?op=password", {usu_id:usu_id,usu_pass:newpass}, function (data) { 14 | swal("Correcto!", "Actualizado Correctamente", "success"); 15 | }); 16 | 17 | }else{ 18 | swal("Error!", "Las contraseñas no coinciden", "error"); 19 | } 20 | } 21 | }); --------------------------------------------------------------------------------