├── LICENSE ├── README.md ├── isleenlayout ├── loginLayout.tpl ├── modules │ ├── Accounts │ │ ├── AccountHierarchy.tpl │ │ ├── DetailViewHeaderTitle.tpl │ │ ├── DetailViewSummaryContents.tpl │ │ ├── ModuleSummaryView.tpl │ │ ├── UpdateModuleSummary.tpl │ │ ├── UpdateModuleSummaryView.tpl │ │ ├── resources │ │ │ ├── Detail.js │ │ │ └── Edit.js │ │ └── uitypes │ │ │ └── Text.tpl │ ├── Calendar │ │ ├── CalendarSettings.tpl │ │ ├── CalendarSharedUsers.tpl │ │ ├── CalendarView.tpl │ │ ├── CalendarViewPreProcess.tpl │ │ ├── CalendarViewTypes.tpl │ │ ├── Export.tpl │ │ ├── Import.tpl │ │ ├── ImportFinalResult.tpl │ │ ├── ImportResult.tpl │ │ ├── ListViewContents.tpl │ │ ├── MassEditForm.tpl │ │ ├── QuickCreate.tpl │ │ ├── SharedCalendarView.tpl │ │ ├── UpdateModuleSummary.tpl │ │ ├── resources │ │ │ ├── CalendarView.js │ │ │ ├── Edit.js │ │ │ ├── List.js │ │ │ └── SharedCalendarView.js │ │ └── uitypes │ │ │ └── DateTime.tpl │ ├── Campaigns │ │ ├── RelatedList.tpl │ │ ├── UpdateModuleSummary.tpl │ │ └── resources │ │ │ ├── Detail.js │ │ │ ├── List.js │ │ │ └── RelatedList.js │ ├── Contacts │ │ ├── DetailViewHeaderTitle.tpl │ │ ├── DetailViewSummaryContents.tpl │ │ ├── ModuleSummaryView.tpl │ │ ├── UpdateModuleSummary.tpl │ │ ├── resources │ │ │ ├── Detail.js │ │ │ └── Edit.js │ │ └── uitypes │ │ │ └── Text.tpl │ ├── CustomView │ │ ├── EditView.tpl │ │ └── resources │ │ │ └── CustomView.js │ ├── Documents │ │ ├── AddFolder.tpl │ │ ├── ListViewHeader.tpl │ │ ├── MoveDocuments.tpl │ │ ├── UpdateModuleSummary.tpl │ │ └── resources │ │ │ ├── Detail.js │ │ │ ├── Edit.js │ │ │ └── List.js │ ├── EmailTemplates │ │ ├── DetailViewFullContents.tpl │ │ ├── DetailViewHeader.tpl │ │ ├── DetailViewHeaderTitle.tpl │ │ ├── EditView.tpl │ │ ├── index.tpl │ │ └── resources │ │ │ └── Edit.js │ ├── Emails │ │ ├── EmailPreview.tpl │ │ ├── EmailPreviewPrint.tpl │ │ ├── SendEmailResult.tpl │ │ └── resources │ │ │ ├── EmailPreview.js │ │ │ ├── Emails.js │ │ │ └── MassEdit.js │ ├── Events │ │ ├── DetailViewBlockView.tpl │ │ ├── EditViewBlocks.tpl │ │ └── uitypes │ │ │ ├── DateTime.tpl │ │ │ ├── FollowUp.tpl │ │ │ ├── Multireference.tpl │ │ │ └── MultireferenceDetailView.tpl │ ├── Google │ │ ├── ContentDetails.tpl │ │ ├── Contents.tpl │ │ ├── map.tpl │ │ └── resources │ │ │ ├── List.js │ │ │ └── map.js │ ├── HelpDesk │ │ ├── DetailViewHeaderTitle.tpl │ │ ├── DetailViewSummaryContents.tpl │ │ ├── ModuleSummaryView.tpl │ │ ├── SummaryViewWidgets.tpl │ │ ├── UpdateModuleSummary.tpl │ │ └── dashboards │ │ │ ├── DashBoardWidgetContents.tpl │ │ │ ├── OpenTickets.tpl │ │ │ └── TicketsByStatus.tpl │ ├── Home │ │ ├── Index.tpl │ │ ├── IndexViewPreProcess.tpl │ │ ├── Tasks.tpl │ │ └── dashboards │ │ │ ├── DashBoardPostProcess.tpl │ │ │ └── DashBoardPreProcess.tpl │ ├── Import │ │ ├── ImportAdvanced.tpl │ │ ├── ImportBasicStep.tpl │ │ ├── ImportDetails.tpl │ │ ├── ImportError.tpl │ │ ├── ImportResult.tpl │ │ ├── ImportSchedule.tpl │ │ ├── ImportStatus.tpl │ │ ├── ImportUndoResult.tpl │ │ ├── Import_Advanced_Buttons.tpl │ │ ├── Import_Basic_Buttons.tpl │ │ ├── Import_Default_Values_Widget.tpl │ │ ├── Import_Done_Buttons.tpl │ │ ├── Import_Finish_Buttons.tpl │ │ ├── Import_Result_Details.tpl │ │ ├── Import_Saved_Maps.tpl │ │ ├── Import_Step1.tpl │ │ ├── Import_Step2.tpl │ │ ├── Import_Step3.tpl │ │ ├── Import_Step4.tpl │ │ └── resources │ │ │ └── Import.js │ ├── Install │ │ ├── InstallPostProcess.tpl │ │ ├── InstallPreProcess.tpl │ │ ├── Step1.tpl │ │ ├── Step2.tpl │ │ ├── Step3.tpl │ │ ├── Step4.tpl │ │ ├── Step5.tpl │ │ ├── Step6.tpl │ │ ├── Step7.tpl │ │ └── resources │ │ │ ├── Index.js │ │ │ ├── css │ │ │ ├── mkCheckbox.css │ │ │ └── style.css │ │ │ └── images │ │ │ └── check_radio_sprite.png │ ├── Inventory │ │ ├── EditView.tpl │ │ ├── EditViewBlocks.tpl │ │ ├── LineItemsContent.tpl │ │ ├── LineItemsDetail.tpl │ │ ├── LineItemsEdit.tpl │ │ ├── PopupContents.tpl │ │ ├── PopupEntries.tpl │ │ └── resources │ │ │ ├── Detail.js │ │ │ ├── Edit.js │ │ │ └── Popup.js │ ├── Invoice │ │ ├── UpdateModuleSummary.tpl │ │ └── resources │ │ │ ├── Detail.js │ │ │ └── Edit.js │ ├── IslDropbox │ │ ├── DropSelect.tpl │ │ ├── DropUpload.tpl │ │ └── resources │ │ │ ├── Edit.js │ │ │ ├── IslDropbox.js │ │ │ └── upload.js │ ├── Leads │ │ ├── ConvertLead.tpl │ │ ├── ConvertLeadError.tpl │ │ ├── DetailViewHeaderTitle.tpl │ │ ├── DetailViewSummaryContents.tpl │ │ ├── ModuleSummaryView.tpl │ │ ├── UpdateModuleSummary.tpl │ │ ├── dashboards │ │ │ ├── DashBoardWidgetContents.tpl │ │ │ ├── LeadsByIndustry.tpl │ │ │ ├── LeadsBySource.tpl │ │ │ ├── LeadsByStatus.tpl │ │ │ └── LeadsCreated.tpl │ │ └── resources │ │ │ └── Detail.js │ ├── MailManager │ │ ├── FolderDrafts.tpl │ │ ├── FolderList.tpl │ │ ├── FolderOpen.tpl │ │ ├── IndexPostProcess.tpl │ │ ├── IndexViewPreProcess.tpl │ │ ├── MailManager │ │ │ ├── FolderDrafts.tpl │ │ │ ├── FolderList.tpl │ │ │ ├── FolderOpen.tpl │ │ │ ├── IndexPostProcess.tpl │ │ │ ├── IndexViewPreProcess.tpl │ │ │ ├── MailManagerCommentWidget.tpl │ │ │ ├── MailOpen.tpl │ │ │ ├── Mainui.tpl │ │ │ ├── MainuiQuickLinks.tpl │ │ │ ├── Relationship.tpl │ │ │ ├── Settings.tpl │ │ │ ├── index.tpl │ │ │ └── resources │ │ │ │ └── MailManager.js │ │ ├── MailManagerCommentWidget.tpl │ │ ├── MailOpen.tpl │ │ ├── Mainui.tpl │ │ ├── MainuiQuickLinks.tpl │ │ ├── Relationship.tpl │ │ ├── Search.Popupui.tpl │ │ ├── Settings.tpl │ │ ├── index.tpl │ │ └── resources │ │ │ └── MailManager.js │ ├── Migration │ │ ├── MigrationStep1.tpl │ │ └── MigrationStep2.tpl │ ├── Mobile │ │ └── generic │ │ │ ├── Detail.tpl │ │ │ ├── Error.tpl │ │ │ ├── Footer.tpl │ │ │ ├── Header.tpl │ │ │ ├── Home.tpl │ │ │ ├── List.tpl │ │ │ ├── Login.tpl │ │ │ ├── Search.tpl │ │ │ └── SearchConfig.tpl │ ├── ModTracker │ │ ├── RecentActivities.tpl │ │ └── UpdatesContent.tpl │ ├── Potentials │ │ ├── DetailViewHeaderTitle.tpl │ │ ├── DetailViewSummaryContents.tpl │ │ ├── ModuleSummaryView.tpl │ │ ├── SummaryViewWidgets.tpl │ │ ├── UpdateModuleSummary.tpl │ │ ├── dashboards │ │ │ ├── DashBoardWidgetContents.tpl │ │ │ ├── Forecast.tpl │ │ │ ├── FunnelAmount.tpl │ │ │ ├── GroupBySalesPerson.tpl │ │ │ ├── GroupBySalesStage.tpl │ │ │ ├── PipelinedAmountPerSalesPerson.tpl │ │ │ ├── TopPotentials.tpl │ │ │ ├── TopPotentialsContents.tpl │ │ │ └── TotalRevenuePerSalesPerson.tpl │ │ └── resources │ │ │ └── Detail.js │ ├── PriceBooks │ │ ├── ListPriceUpdate.tpl │ │ ├── RelatedList.tpl │ │ ├── UpdateModuleSummary.tpl │ │ └── resources │ │ │ ├── Detail.js │ │ │ ├── PriceBooksPopup.js │ │ │ └── RelatedList.js │ ├── Products │ │ ├── MoreCurrenciesList.tpl │ │ ├── PopupEntries.tpl │ │ ├── PriceBookProductPopup.tpl │ │ ├── PriceBookProductPopupContents.tpl │ │ ├── UpdateModuleSummary.tpl │ │ └── resources │ │ │ ├── Detail.js │ │ │ └── Edit.js │ ├── Project │ │ ├── DetailViewHeaderTitle.tpl │ │ ├── DetailViewSummaryContents.tpl │ │ ├── ModuleSummaryView.tpl │ │ ├── SummaryViewWidgets.tpl │ │ ├── SummaryWidgets.tpl │ │ ├── UpdateModuleSummary.tpl │ │ └── resources │ │ │ └── Detail.js │ ├── PurchaseOrder │ │ ├── UpdateModuleSummary.tpl │ │ ├── resources │ │ │ ├── Detail.js │ │ │ └── Edit.js │ │ └── uitypes │ │ │ └── Text.tpl │ ├── Quotes │ │ ├── UpdateModuleSummary.tpl │ │ └── resources │ │ │ ├── Detail.js │ │ │ └── Edit.js │ ├── RecycleBin │ │ ├── ListViewContents.tpl │ │ ├── ListViewHeader.tpl │ │ ├── RecycleBin.tpl │ │ ├── RecycleBinContents.tpl │ │ └── resources │ │ │ └── List.js │ ├── Reports │ │ ├── ChartEditStep1.tpl │ │ ├── ChartEditStep2.tpl │ │ ├── ChartEditStep3.tpl │ │ ├── ChartReportContents.tpl │ │ ├── ChartReportHeader.tpl │ │ ├── EditChartHeader.tpl │ │ ├── EditFolder.tpl │ │ ├── EditHeader.tpl │ │ ├── ListViewContents.tpl │ │ ├── ListViewFolders.tpl │ │ ├── ListViewHeader.tpl │ │ ├── ListViewPreProcess.tpl │ │ ├── MoveReports.tpl │ │ ├── OperationNotPermitted.tpl │ │ ├── PrintReport.tpl │ │ ├── RelatedFields.tpl │ │ ├── ReportContents.tpl │ │ ├── ReportHeader.tpl │ │ ├── Step1.tpl │ │ ├── chartReportHiddenContents.tpl │ │ ├── dashboard │ │ │ └── ChartReportWidget.tpl │ │ ├── resources │ │ │ ├── ChartDetail.js │ │ │ ├── ChartEdit.js │ │ │ ├── ChartEdit1.js │ │ │ ├── ChartEdit2.js │ │ │ ├── ChartEdit3.js │ │ │ ├── Detail.js │ │ │ ├── Edit.js │ │ │ ├── Edit1.js │ │ │ ├── Edit2.js │ │ │ ├── Edit3.js │ │ │ ├── List.js │ │ │ └── Widget.js │ │ ├── step2.tpl │ │ └── step3.tpl │ ├── SMSNotifier │ │ ├── StatusWidget.tpl │ │ └── UpdateModuleSummary.tpl │ ├── SalesOrder │ │ ├── UpdateModuleSummary.tpl │ │ └── resources │ │ │ ├── Detail.js │ │ │ └── Edit.js │ ├── Services │ │ ├── UpdateModuleSummary.tpl │ │ └── resources │ │ │ └── Edit.js │ ├── Settings │ │ ├── CronTasks │ │ │ ├── EditAjax.tpl │ │ │ └── resources │ │ │ │ └── List.js │ │ ├── Currency │ │ │ ├── EditAjax.tpl │ │ │ ├── TransformEdit.tpl │ │ │ └── resources │ │ │ │ └── Currency.js │ │ ├── CustomerPortal │ │ │ ├── Index.tpl │ │ │ └── resources │ │ │ │ └── CustomerPortal.js │ │ ├── EmailTemplate │ │ │ └── ListContents.tpl │ │ ├── EmailTemplates │ │ │ └── ListContents.tpl │ │ ├── Groups │ │ │ ├── DeleteTransferForm.tpl │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ └── resources │ │ │ │ └── Edit.js │ │ ├── LabelEditor │ │ │ ├── ListContents.tpl │ │ │ └── resources │ │ │ │ └── LabelEditor.js │ │ ├── LayoutEditor │ │ │ ├── AddBlock.tpl │ │ │ ├── FieldUi.tpl │ │ │ ├── Index.tpl │ │ │ ├── RelatedList.tpl │ │ │ └── resources │ │ │ │ └── LayoutEditor.js │ │ ├── Leads │ │ │ ├── LeadMappingEdit.tpl │ │ │ ├── MappingDetail.tpl │ │ │ └── resources │ │ │ │ └── LeadMapping.js │ │ ├── LoginHistory │ │ │ ├── ListViewHeader.tpl │ │ │ └── resources │ │ │ │ └── List.js │ │ ├── MailConverter │ │ │ ├── EditView.tpl │ │ │ ├── Index.tpl │ │ │ ├── ListViewActions.tpl │ │ │ ├── ListViewContents.tpl │ │ │ ├── Rule.tpl │ │ │ ├── RuleEditView.tpl │ │ │ ├── RulesList.tpl │ │ │ └── resources │ │ │ │ ├── List.js │ │ │ │ └── MailConverter.js │ │ ├── MenuEditor │ │ │ ├── Index.tpl │ │ │ └── resources │ │ │ │ └── MenuEditor.js │ │ ├── ModuleManager │ │ │ ├── ImportUserModuleStep1.tpl │ │ │ ├── ImportUserModuleStep2.tpl │ │ │ ├── ImportUserModuleStep3.tpl │ │ │ ├── IndexContents.tpl │ │ │ ├── ListContents.tpl │ │ │ ├── Step1.tpl │ │ │ ├── UpdateUserModuleStep3.tpl │ │ │ └── resources │ │ │ │ ├── ModuleImport.js │ │ │ │ └── ModuleManager.js │ │ ├── PickListDependency │ │ │ ├── DependencyGraph.tpl │ │ │ ├── EditView.tpl │ │ │ ├── ListViewActions.tpl │ │ │ └── resources │ │ │ │ └── PickListDependency.js │ │ ├── Picklist │ │ │ ├── AssignValueToRole.tpl │ │ │ ├── CreateView.tpl │ │ │ ├── DeleteView.tpl │ │ │ ├── EditView.tpl │ │ │ ├── Index.tpl │ │ │ ├── ModulePickListDetail.tpl │ │ │ ├── PickListValueByRole.tpl │ │ │ ├── PickListValueDetail.tpl │ │ │ └── resources │ │ │ │ └── Picklist.js │ │ ├── Profiles │ │ │ ├── DeleteTransferForm.tpl │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ ├── EditViewContents.tpl │ │ │ └── resources │ │ │ │ └── Profiles.js │ │ ├── Roles │ │ │ ├── DeleteTransferForm.tpl │ │ │ ├── EditView.tpl │ │ │ ├── Index.tpl │ │ │ ├── Popup.tpl │ │ │ ├── RoleTree.tpl │ │ │ └── resources │ │ │ │ └── Roles.js │ │ ├── SMSNotifier │ │ │ ├── EditView.tpl │ │ │ └── resources │ │ │ │ └── List.js │ │ ├── SharingAccess │ │ │ ├── EditRule.tpl │ │ │ ├── Index.tpl │ │ │ ├── ListRules.tpl │ │ │ └── resources │ │ │ │ └── SharingAccess.js │ │ ├── Vtiger │ │ │ ├── Announcement.tpl │ │ │ ├── CompanyDetails.tpl │ │ │ ├── CompanyDetailsEdit.tpl │ │ │ ├── ConfigEditorDetail.tpl │ │ │ ├── ConfigEditorEdit.tpl │ │ │ ├── CustomRecordNumbering.tpl │ │ │ ├── EditTax.tpl │ │ │ ├── Index.tpl │ │ │ ├── ListView.tpl │ │ │ ├── ListViewContents.tpl │ │ │ ├── ListViewHeader.tpl │ │ │ ├── ModuleCustomNumberingInfo.tpl │ │ │ ├── OutgoingServerDetail.tpl │ │ │ ├── OutgoingServerEdit.tpl │ │ │ ├── SettingsMenuEnd.tpl │ │ │ ├── SettingsMenuStart.tpl │ │ │ ├── SettingsShortCut.tpl │ │ │ ├── Sidebar.tpl │ │ │ ├── SummaryListView.tpl │ │ │ ├── TaxIndex.tpl │ │ │ ├── TermsAndConditions.tpl │ │ │ ├── UI5EmbedView.tpl │ │ │ └── resources │ │ │ │ ├── Announcement.js │ │ │ │ ├── CompanyDetails.js │ │ │ │ ├── ConfigEditor.js │ │ │ │ ├── CustomRecordNumbering.js │ │ │ │ ├── Detail.js │ │ │ │ ├── Edit.js │ │ │ │ ├── Index.js │ │ │ │ ├── List.js │ │ │ │ ├── OutgoingServer.js │ │ │ │ ├── Tax.js │ │ │ │ └── TermsAndConditions.js │ │ ├── Webforms │ │ │ ├── DetailView.tpl │ │ │ ├── DetailViewBlockView.tpl │ │ │ ├── DetailViewHeader.tpl │ │ │ ├── EditView.tpl │ │ │ ├── FieldsDetailView.tpl │ │ │ ├── FieldsEditView.tpl │ │ │ ├── SettingsMenuStart.tpl │ │ │ ├── ShowForm.tpl │ │ │ └── resources │ │ │ │ ├── Detail.js │ │ │ │ ├── Edit.js │ │ │ │ ├── Field.js │ │ │ │ └── List.js │ │ └── Workflows │ │ │ ├── AdvanceFilterCondition.tpl │ │ │ ├── CreateEntity.tpl │ │ │ ├── EditHeader.tpl │ │ │ ├── EditTask.tpl │ │ │ ├── FieldExpressions.tpl │ │ │ ├── ListViewHeader.tpl │ │ │ ├── Step1.tpl │ │ │ ├── Step2.tpl │ │ │ ├── Step3.tpl │ │ │ ├── Tasks │ │ │ ├── VTCreateEntityTask.tpl │ │ │ ├── VTCreateEventTask.tpl │ │ │ ├── VTCreateTodoTask.tpl │ │ │ ├── VTEmailTask.tpl │ │ │ ├── VTEntityMethodTask.tpl │ │ │ ├── VTSMSTask.tpl │ │ │ └── VTUpdateFieldsTask.tpl │ │ │ ├── TasksList.tpl │ │ │ └── resources │ │ │ ├── AdvanceFilter.js │ │ │ ├── Edit.js │ │ │ ├── Edit1.js │ │ │ ├── Edit2.js │ │ │ ├── Edit3.js │ │ │ ├── List.js │ │ │ └── libraries │ │ │ └── jquery.datepick.package-4.1.0 │ │ │ ├── calendar-blue.gif │ │ │ ├── calendar-green.gif │ │ │ ├── calendar.gif │ │ │ ├── datepickBasic.html │ │ │ ├── flora.datepick.css │ │ │ ├── humanity.datepick.css │ │ │ ├── jquery.datepick-af.js │ │ │ ├── jquery.datepick-am.js │ │ │ ├── jquery.datepick-ar-DZ.js │ │ │ ├── jquery.datepick-ar-EG.js │ │ │ ├── jquery.datepick-ar.js │ │ │ ├── jquery.datepick-az.js │ │ │ ├── jquery.datepick-bg.js │ │ │ ├── jquery.datepick-bs.js │ │ │ ├── jquery.datepick-ca.js │ │ │ ├── jquery.datepick-cs.js │ │ │ ├── jquery.datepick-da.js │ │ │ ├── jquery.datepick-de-CH.js │ │ │ ├── jquery.datepick-de.js │ │ │ ├── jquery.datepick-el.js │ │ │ ├── jquery.datepick-en-AU.js │ │ │ ├── jquery.datepick-en-GB.js │ │ │ ├── jquery.datepick-en-NZ.js │ │ │ ├── jquery.datepick-eo.js │ │ │ ├── jquery.datepick-es-AR.js │ │ │ ├── jquery.datepick-es-PE.js │ │ │ ├── jquery.datepick-es.js │ │ │ ├── jquery.datepick-et.js │ │ │ ├── jquery.datepick-eu.js │ │ │ ├── jquery.datepick-fa.js │ │ │ ├── jquery.datepick-fi.js │ │ │ ├── jquery.datepick-fo.js │ │ │ ├── jquery.datepick-fr-CH.js │ │ │ ├── jquery.datepick-fr.js │ │ │ ├── jquery.datepick-gl.js │ │ │ ├── jquery.datepick-gu.js │ │ │ ├── jquery.datepick-he.js │ │ │ ├── jquery.datepick-hi-IN.js │ │ │ ├── jquery.datepick-hi.js │ │ │ ├── jquery.datepick-hr.js │ │ │ ├── jquery.datepick-hu.js │ │ │ ├── jquery.datepick-hy.js │ │ │ ├── jquery.datepick-id.js │ │ │ ├── jquery.datepick-is.js │ │ │ ├── jquery.datepick-it.js │ │ │ ├── jquery.datepick-ja.js │ │ │ ├── jquery.datepick-ka.js │ │ │ ├── jquery.datepick-km.js │ │ │ ├── jquery.datepick-ko.js │ │ │ ├── jquery.datepick-lt.js │ │ │ ├── jquery.datepick-lv.js │ │ │ ├── jquery.datepick-me-ME.js │ │ │ ├── jquery.datepick-me.js │ │ │ ├── jquery.datepick-mk.js │ │ │ ├── jquery.datepick-ml.js │ │ │ ├── jquery.datepick-ms.js │ │ │ ├── jquery.datepick-mt.js │ │ │ ├── jquery.datepick-nl-BE.js │ │ │ ├── jquery.datepick-nl.js │ │ │ ├── jquery.datepick-no.js │ │ │ ├── jquery.datepick-pl.js │ │ │ ├── jquery.datepick-pt-BR.js │ │ │ ├── jquery.datepick-pt.js │ │ │ ├── jquery.datepick-rm.js │ │ │ ├── jquery.datepick-ro.js │ │ │ ├── jquery.datepick-ru.js │ │ │ ├── jquery.datepick-sk.js │ │ │ ├── jquery.datepick-sl.js │ │ │ ├── jquery.datepick-sq.js │ │ │ ├── jquery.datepick-sr-SR.js │ │ │ ├── jquery.datepick-sr.js │ │ │ ├── jquery.datepick-sv.js │ │ │ ├── jquery.datepick-ta.js │ │ │ ├── jquery.datepick-th.js │ │ │ ├── jquery.datepick-tr.js │ │ │ ├── jquery.datepick-uk.js │ │ │ ├── jquery.datepick-ur.js │ │ │ ├── jquery.datepick-vi.js │ │ │ ├── jquery.datepick-zh-CN.js │ │ │ ├── jquery.datepick-zh-HK.js │ │ │ ├── jquery.datepick-zh-TW.js │ │ │ ├── jquery.datepick.css │ │ │ ├── jquery.datepick.ext.js │ │ │ ├── jquery.datepick.ext.min.js │ │ │ ├── jquery.datepick.js │ │ │ ├── jquery.datepick.lang.js │ │ │ ├── jquery.datepick.lang.min.js │ │ │ ├── jquery.datepick.min.js │ │ │ ├── jquery.datepick.validation.js │ │ │ ├── jquery.datepick.validation.min.js │ │ │ ├── redmond.datepick.css │ │ │ ├── smoothness.datepick.css │ │ │ ├── ui-black-tie.datepick.css │ │ │ ├── ui-blitzer.datepick.css │ │ │ ├── ui-cupertino.datepick.css │ │ │ ├── ui-dark-hive.datepick.css │ │ │ ├── ui-dot-luv.datepick.css │ │ │ ├── ui-eggplant.datepick.css │ │ │ ├── ui-excite-bike.datepick.css │ │ │ ├── ui-flick.datepick.css │ │ │ ├── ui-hot-sneaks.datepick.css │ │ │ ├── ui-humanity.datepick.css │ │ │ ├── ui-le-frog.datepick.css │ │ │ ├── ui-mint-choc.datepick.css │ │ │ ├── ui-overcast.datepick.css │ │ │ ├── ui-pepper-grinder.datepick.css │ │ │ ├── ui-redmond.datepick.css │ │ │ ├── ui-smoothness.datepick.css │ │ │ ├── ui-south-street.datepick.css │ │ │ ├── ui-start.datepick.css │ │ │ ├── ui-sunny.datepick.css │ │ │ ├── ui-swanky-purse.datepick.css │ │ │ ├── ui-trontastic.datepick.css │ │ │ ├── ui-ui-darkness.datepick.css │ │ │ ├── ui-ui-lightness.datepick.css │ │ │ ├── ui-vader.datepick.css │ │ │ └── ui.datepick.css │ ├── Users │ │ ├── ChangePassword.tpl │ │ ├── DeleteUser.tpl │ │ ├── DetailViewFullContents.tpl │ │ ├── DetailViewPostProcess.tpl │ │ ├── EditView.tpl │ │ ├── FPLogin.tpl │ │ ├── ForgotPassword.tpl │ │ ├── IndexPostProcess.tpl │ │ ├── ListViewContents.tpl │ │ ├── ListViewHeader.tpl │ │ ├── ListViewPreProcess.tpl │ │ ├── Login.tpl │ │ ├── LoginPreProcess.tpl │ │ ├── OperationNotPermitted.tpl │ │ ├── PopupContents.tpl │ │ ├── PreUsersUpdates.tpl │ │ ├── PreferenceDetailViewHeader.tpl │ │ ├── PreferenceDetailViewPreProcess.tpl │ │ ├── QuickCreate.tpl │ │ ├── SettingsMenuEnd.tpl │ │ ├── SettingsMenuStart.tpl │ │ ├── SystemSetup.tpl │ │ ├── UI5EmbedView.tpl │ │ ├── UserEditViewPreProcess.tpl │ │ ├── UserSetup.tpl │ │ ├── UserViewHeader.tpl │ │ ├── UserViewPreProcess.tpl │ │ ├── UsersUpdates.tpl │ │ └── resources │ │ │ ├── Detail.js │ │ │ ├── Edit.js │ │ │ ├── List.js │ │ │ ├── PreferenceDetail.js │ │ │ ├── PreferenceEdit.js │ │ │ └── Updates.js │ ├── Vendors │ │ ├── UpdateModuleSummary.tpl │ │ └── resources │ │ │ └── Detail.js │ └── Vtiger │ │ ├── AddCommentForm.tpl │ │ ├── AdvanceFilter.tpl │ │ ├── AdvanceFilterCondition.tpl │ │ ├── AdvanceSearch.tpl │ │ ├── BasicHeader.tpl │ │ ├── Comment.tpl │ │ ├── CommentThreadList.tpl │ │ ├── CommentsList.tpl │ │ ├── CommentsListIteration.tpl │ │ ├── ComposeEmailForm.tpl │ │ ├── ContactsSummaryWidgetContents.tpl │ │ ├── DetailViewBlockView.tpl │ │ ├── DetailViewFullContents.tpl │ │ ├── DetailViewHeader.tpl │ │ ├── DetailViewHeaderTitle.tpl │ │ ├── DetailViewPostProcess.tpl │ │ ├── DetailViewPreProcess.tpl │ │ ├── DetailViewSummaryContents.tpl │ │ ├── DocumentsSummaryWidgetContents.tpl │ │ ├── EditView.tpl │ │ ├── EditViewActions.tpl │ │ ├── EditViewBlocks.tpl │ │ ├── EmailRelatedList.tpl │ │ ├── Export.tpl │ │ ├── FindDuplicateContents.tpl │ │ ├── FindDuplicateHeader.tpl │ │ ├── FindDuplicatePreProcess.tpl │ │ ├── Footer.tpl │ │ ├── Header.tpl │ │ ├── HelpDeskSummaryWidgetContents.tpl │ │ ├── Index.tpl │ │ ├── IndexPostProcess.tpl │ │ ├── IndexViewPreProcess.tpl │ │ ├── JSResources.tpl │ │ ├── ListViewActions.tpl │ │ ├── ListViewContents.tpl │ │ ├── ListViewHeader.tpl │ │ ├── ListViewPostProcess.tpl │ │ ├── ListViewPreProcess.tpl │ │ ├── ListViewSidebar.tpl │ │ ├── MassEditForm.tpl │ │ ├── MenuBar.tpl │ │ ├── MergeRecords.tpl │ │ ├── ModalFooter.tpl │ │ ├── ModuleSummaryView.tpl │ │ ├── NoComments.tpl │ │ ├── Notifications.tpl │ │ ├── OperationNotPermitted.tpl │ │ ├── Popup.tpl │ │ ├── PopupContents.tpl │ │ ├── PopupFooter.tpl │ │ ├── PopupSearch.tpl │ │ ├── ProductsSummaryWidgetContents.tpl │ │ ├── ProjectMilestoneSummaryWidgetContents.tpl │ │ ├── ProjectTaskSummaryWidgetContents.tpl │ │ ├── QuickCreate.tpl │ │ ├── RecentActivities.tpl │ │ ├── RecentComments.tpl │ │ ├── RecordNamesList.tpl │ │ ├── RelatedActivities.tpl │ │ ├── RelatedList.tpl │ │ ├── SelectEmailFields.tpl │ │ ├── SendSMSForm.tpl │ │ ├── ShowAllComments.tpl │ │ ├── ShowTagCloud.tpl │ │ ├── SideBar.tpl │ │ ├── SideBarLinks.tpl │ │ ├── SideBarWidgets.tpl │ │ ├── SummaryViewContents.tpl │ │ ├── SummaryViewWidgets.tpl │ │ ├── SummaryWidgets.tpl │ │ ├── TagCloudResults.tpl │ │ ├── TooltipContents.tpl │ │ ├── TransferRecordOwnership.tpl │ │ ├── UI5EmbedView.tpl │ │ ├── UnifiedSearchResults.tpl │ │ ├── UpdateComments.tpl │ │ ├── UpdateModuleSummary.tpl │ │ ├── dashboards │ │ ├── AddNotePad.tpl │ │ ├── CalendarActivities.tpl │ │ ├── CalendarActivitiesContents.tpl │ │ ├── DashBoardContents.tpl │ │ ├── DashBoardHeader.tpl │ │ ├── DashBoardPreProcess.tpl │ │ ├── DashBoardWidgetContents.tpl │ │ ├── DashboardHeaderIcons.tpl │ │ ├── History.tpl │ │ ├── HistoryContents.tpl │ │ ├── KeyMetrics.tpl │ │ ├── KeyMetricsContents.tpl │ │ ├── MiniList.tpl │ │ ├── MiniListContents.tpl │ │ ├── MiniListWizard.tpl │ │ ├── Notebook.tpl │ │ ├── NotebookContents.tpl │ │ ├── TagCloud.tpl │ │ ├── TagCloudContents.tpl │ │ └── WidgetHeader.tpl │ │ ├── resources │ │ ├── AdvanceFilter.js │ │ ├── AdvanceSearch.js │ │ ├── BasicSearch.js │ │ ├── CkEditor.js │ │ ├── DashBoard.js │ │ ├── Detail.js │ │ ├── Edit.js │ │ ├── EmailsRelatedPopup.js │ │ ├── FindDuplicates.js │ │ ├── Header.js │ │ ├── ImageHandler.js │ │ ├── List.js │ │ ├── Popup.js │ │ ├── RelatedList.js │ │ ├── SearchAdvanceFilter.js │ │ ├── Vtiger.js │ │ └── dashboards │ │ │ └── Widget.js │ │ ├── showDuplicateSearch.tpl │ │ └── uitypes │ │ ├── Boolean.tpl │ │ ├── Currency.tpl │ │ ├── CurrencyList.tpl │ │ ├── Date.tpl │ │ ├── DateTime.tpl │ │ ├── DocumentsFileUpload.tpl │ │ ├── DocumentsFolder.tpl │ │ ├── Email.tpl │ │ ├── FileLocationType.tpl │ │ ├── Image.tpl │ │ ├── ImageDetailView.tpl │ │ ├── MultiPicklist.tpl │ │ ├── Number.tpl │ │ ├── Owner.tpl │ │ ├── Password.tpl │ │ ├── Percentage.tpl │ │ ├── Phone.tpl │ │ ├── Picklist.tpl │ │ ├── ProductTax.tpl │ │ ├── Recurrence.tpl │ │ ├── RecurrenceDetailView.tpl │ │ ├── Reference.tpl │ │ ├── Reminder.tpl │ │ ├── ReminderDetailView.tpl │ │ ├── Salutation.tpl │ │ ├── SalutationDetailView.tpl │ │ ├── String.tpl │ │ ├── StringDetailView.tpl │ │ ├── Text.tpl │ │ ├── Theme.tpl │ │ ├── Time.tpl │ │ ├── Url.tpl │ │ └── UserRole.tpl └── skins │ └── isleen │ └── images │ ├── Calendar.png │ ├── DefaultUserIcon.png │ ├── Dropbox.png │ ├── MnyxU.gif │ ├── PriceBooks.png │ ├── Products.png │ ├── Services.png │ ├── Tasks.png │ ├── arrowDown.png │ ├── arrowRight.png │ ├── csv.png │ ├── default_user.jpg │ ├── denied.gif │ ├── downArrowSmall.png │ ├── green.png │ ├── hbar.PNG │ ├── line.PNG │ ├── loading.gif │ ├── loadingSmall.gif │ ├── loadingdot.gif │ ├── pie.PNG │ ├── print.png │ ├── rightArrowSmall.png │ ├── vbar.PNG │ └── xlsx.png └── libraries └── isleen ├── HighCharts ├── VtHighchartInterface.js ├── canvg.js ├── exporting.js ├── funnel.js ├── highcharts-3d.js ├── highcharts.js ├── rgbcolor.js └── vtchart.js ├── bootstrap-datetimepicker ├── css │ └── datetimepicker.css └── js │ └── bootstrap-datetimepicker.min.js ├── bootstrap-fileupload ├── bootstrap-fileupload.css └── bootstrap-fileupload.js ├── bootstrap ├── assets │ ├── advanced-datatable │ │ ├── Readme.txt │ │ ├── component.json │ │ ├── docs │ │ │ ├── 34cdb56b2c.html │ │ │ ├── DataTable.defaults.columns.html │ │ │ ├── DataTable.defaults.html │ │ │ ├── DataTable.defaults.oLanguage.html │ │ │ ├── DataTable.defaults.oLanguage.oAria.html │ │ │ ├── DataTable.defaults.oLanguage.oPaginate.html │ │ │ ├── DataTable.defaults.oSearch.html │ │ │ ├── DataTable.ext.html │ │ │ ├── DataTable.html │ │ │ ├── DataTable.models.ext.html │ │ │ ├── DataTable.models.html │ │ │ ├── DataTable.models.oColumn.html │ │ │ ├── DataTable.models.oRow.html │ │ │ ├── DataTable.models.oSearch.html │ │ │ ├── DataTable.models.oSettings.html │ │ │ ├── DataTable.models.oSettings.oBrowser.html │ │ │ ├── DataTable.models.oSettings.oFeatures.html │ │ │ ├── DataTable.models.oSettings.oLanguage.html │ │ │ ├── DataTable.models.oSettings.oPreviousSearch.html │ │ │ ├── DataTable.models.oSettings.oScroll.html │ │ │ ├── index.html │ │ │ └── media │ │ │ │ ├── css │ │ │ │ ├── doc.css │ │ │ │ ├── shCore.css │ │ │ │ └── shThemeDataTables.css │ │ │ │ ├── images │ │ │ │ ├── arrow.jpg │ │ │ │ ├── arrow.png │ │ │ │ └── extended.png │ │ │ │ ├── js │ │ │ │ ├── doc.js │ │ │ │ ├── jquery.js │ │ │ │ ├── shBrushJScript.js │ │ │ │ └── shCore.js │ │ │ │ └── license │ │ │ │ └── Syntax Highlighter │ │ ├── examples │ │ │ ├── advanced_init │ │ │ │ ├── column_render.html │ │ │ │ ├── complex_header.html │ │ │ │ ├── defaults.html │ │ │ │ ├── dom_multiple_elements.html │ │ │ │ ├── dom_toolbar.html │ │ │ │ ├── dt_events.html │ │ │ │ ├── events_live.html │ │ │ │ ├── events_post_init.html │ │ │ │ ├── events_pre_init.html │ │ │ │ ├── footer_callback.html │ │ │ │ ├── highlight.html │ │ │ │ ├── html_sort.html │ │ │ │ ├── language_file.html │ │ │ │ ├── length_menu.html │ │ │ │ ├── localstorage.html │ │ │ │ ├── row_callback.html │ │ │ │ ├── row_grouping.html │ │ │ │ └── sorting_control.html │ │ │ ├── ajax │ │ │ │ ├── ajax.html │ │ │ │ ├── custom_data_property.html │ │ │ │ ├── deep.html │ │ │ │ ├── defer_render.html │ │ │ │ ├── null_data_source.html │ │ │ │ ├── objects.html │ │ │ │ ├── objects_subarrays.html │ │ │ │ └── sources │ │ │ │ │ ├── array_only.txt │ │ │ │ │ ├── arrays.txt │ │ │ │ │ ├── arrays_subobjects.txt │ │ │ │ │ ├── custom_prop.txt │ │ │ │ │ ├── deep.txt │ │ │ │ │ ├── objects.txt │ │ │ │ │ └── objects_subarrays.txt │ │ │ ├── api │ │ │ │ ├── add_row.html │ │ │ │ ├── api_in_init.html │ │ │ │ ├── counter_column.html │ │ │ │ ├── editable.html │ │ │ │ ├── form.html │ │ │ │ ├── highlight.html │ │ │ │ ├── multi_filter.html │ │ │ │ ├── multi_filter_select.html │ │ │ │ ├── regex.html │ │ │ │ ├── row_details.html │ │ │ │ ├── select_row.html │ │ │ │ ├── select_single_row.html │ │ │ │ ├── show_hide.html │ │ │ │ └── tabs_and_scrolling.html │ │ │ ├── basic_init │ │ │ │ ├── alt_pagination.html │ │ │ │ ├── base.html │ │ │ │ ├── base_themeroller.html │ │ │ │ ├── complex_header.html │ │ │ │ ├── dom.html │ │ │ │ ├── filter_only.html │ │ │ │ ├── flexible_width.html │ │ │ │ ├── hidden_columns.html │ │ │ │ ├── language.html │ │ │ │ ├── multi_col_sort.html │ │ │ │ ├── multiple_tables.html │ │ │ │ ├── scroll_x.html │ │ │ │ ├── scroll_xy.html │ │ │ │ ├── scroll_y.html │ │ │ │ ├── scroll_y_infinite.html │ │ │ │ ├── scroll_y_theme.html │ │ │ │ ├── state_save.html │ │ │ │ ├── table_sorting.html │ │ │ │ ├── themes.html │ │ │ │ └── zero_config.html │ │ │ ├── data_sources │ │ │ │ ├── ajax.html │ │ │ │ ├── dom.html │ │ │ │ ├── js_array.html │ │ │ │ └── server_side.html │ │ │ ├── examples_support │ │ │ │ ├── data.sql │ │ │ │ ├── de_DE.txt │ │ │ │ ├── details_close.png │ │ │ │ ├── details_open.png │ │ │ │ ├── editable_ajax.php │ │ │ │ ├── index.html │ │ │ │ ├── infiniteScroll.php │ │ │ │ ├── jquery-ui-tabs.js │ │ │ │ ├── jquery.jeditable.js │ │ │ │ ├── jquery.tooltip.css │ │ │ │ ├── jquery.tooltip.js │ │ │ │ ├── syntax │ │ │ │ │ ├── css │ │ │ │ │ │ └── shCore.css │ │ │ │ │ ├── images │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ └── extended.png │ │ │ │ │ ├── js │ │ │ │ │ │ └── shCore.js │ │ │ │ │ └── license │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ ├── themes │ │ │ │ │ ├── smoothness │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ └── jquery-ui-1.8.4.custom.css │ │ │ │ │ └── ui-lightness │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ │ └── jquery-ui-1.8.4.custom.css │ │ │ │ ├── vv.png │ │ │ │ └── xx.png │ │ │ ├── index.html │ │ │ ├── plug-ins │ │ │ │ ├── dom_sort.html │ │ │ │ ├── html_sort.html │ │ │ │ ├── paging_plugin.html │ │ │ │ ├── plugin_api.html │ │ │ │ ├── range_filtering.html │ │ │ │ ├── sorting_plugin.html │ │ │ │ └── sorting_sType.html │ │ │ └── server_side │ │ │ │ ├── custom_vars.html │ │ │ │ ├── defer_loading.html │ │ │ │ ├── editable.html │ │ │ │ ├── ids.html │ │ │ │ ├── jsonp.html │ │ │ │ ├── object_data.html │ │ │ │ ├── pipeline.html │ │ │ │ ├── post.html │ │ │ │ ├── row_details.html │ │ │ │ ├── scripts │ │ │ │ ├── custom_data_property.php │ │ │ │ ├── details_col.php │ │ │ │ ├── filter_col.php │ │ │ │ ├── id.php │ │ │ │ ├── id_jsonp.php │ │ │ │ ├── jsonp.php │ │ │ │ ├── objects.php │ │ │ │ ├── objects_jsonp.php │ │ │ │ ├── post.php │ │ │ │ └── server_processing.php │ │ │ │ ├── select_rows.html │ │ │ │ └── server_side.html │ │ ├── extras │ │ │ ├── AutoFill │ │ │ │ ├── callbacks.html │ │ │ │ ├── columns.html │ │ │ │ ├── index.html │ │ │ │ ├── inputs.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ └── AutoFill.css │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── 02ff627f40.html │ │ │ │ │ │ ├── 36456bf45f.html │ │ │ │ │ │ ├── 47cac4f141.html │ │ │ │ │ │ ├── 5a72546831.html │ │ │ │ │ │ ├── 8ee4007a12.html │ │ │ │ │ │ ├── AutoFill.html │ │ │ │ │ │ ├── a69b02bcf2.html │ │ │ │ │ │ ├── b44bd4821a.html │ │ │ │ │ │ ├── c6945fdb4a.html │ │ │ │ │ │ ├── global.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── filler.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── AutoFill.js │ │ │ │ │ │ ├── AutoFill.min.js │ │ │ │ │ │ └── AutoFill.min.js.gz │ │ │ │ └── scrolling.html │ │ │ ├── ColReorder │ │ │ │ ├── alt_insert.html │ │ │ │ ├── col_filter.html │ │ │ │ ├── colvis.html │ │ │ │ ├── fixedcolumns.html │ │ │ │ ├── fixedheader.html │ │ │ │ ├── index.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ └── ColReorder.css │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── 46848f6f3b.html │ │ │ │ │ │ ├── 4f1246032c.html │ │ │ │ │ │ ├── ColReorder.html │ │ │ │ │ │ ├── a69b02bcf2.html │ │ │ │ │ │ ├── global.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── insert.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── ColReorder.js │ │ │ │ │ │ ├── ColReorder.min.js │ │ │ │ │ │ └── ColReorder.min.js.gz │ │ │ │ ├── predefined.html │ │ │ │ ├── reset.html │ │ │ │ ├── scrolling.html │ │ │ │ ├── server_side.html │ │ │ │ ├── state_save.html │ │ │ │ └── theme.html │ │ │ ├── ColVis │ │ │ │ ├── exclude_columns.html │ │ │ │ ├── index.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ ├── ColVis.css │ │ │ │ │ │ └── ColVisAlt.css │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── ColVis.html │ │ │ │ │ │ ├── a69b02bcf2.html │ │ │ │ │ │ ├── ccb5a49865.html │ │ │ │ │ │ ├── global.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── button.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── ColVis.js │ │ │ │ │ │ ├── ColVis.min.js │ │ │ │ │ │ └── ColVis.min.js.gz │ │ │ │ ├── mouseover.html │ │ │ │ ├── style.html │ │ │ │ ├── text.html │ │ │ │ ├── theme.html │ │ │ │ ├── title_callback.html │ │ │ │ ├── two_tables.html │ │ │ │ └── two_tables_identical.html │ │ │ ├── FixedColumns │ │ │ │ ├── col_filter.html │ │ │ │ ├── css_size.html │ │ │ │ ├── docs │ │ │ │ │ ├── 070023b890.html │ │ │ │ │ ├── 526f872207.html │ │ │ │ │ ├── 73098af57c.html │ │ │ │ │ ├── 889588ec06.html │ │ │ │ │ ├── 91bce7c4ad.html │ │ │ │ │ ├── FixedColumns.defaults.html │ │ │ │ │ ├── FixedColumns.html │ │ │ │ │ ├── a6bd52f587.html │ │ │ │ │ ├── d3890ba7c4.html │ │ │ │ │ ├── e20106c59a.html │ │ │ │ │ ├── global.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── media │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ └── license │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ ├── index.html │ │ │ │ ├── index_column.html │ │ │ │ ├── left_right_columns.html │ │ │ │ ├── media │ │ │ │ │ └── js │ │ │ │ │ │ ├── FixedColumns.js │ │ │ │ │ │ ├── FixedColumns.min.js │ │ │ │ │ │ └── FixedColumns.min.js.gz │ │ │ │ ├── right_column.html │ │ │ │ ├── row_grouping.html │ │ │ │ ├── row_grouping_height.html │ │ │ │ ├── rowspan.html │ │ │ │ ├── scale_fixed.html │ │ │ │ ├── scale_relative.html │ │ │ │ ├── server-side-processing.html │ │ │ │ ├── themed.html │ │ │ │ ├── two_columns.html │ │ │ │ └── x_y_scrolling.html │ │ │ ├── FixedHeader │ │ │ │ ├── html_table.html │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── FixedHeader.js │ │ │ │ │ ├── FixedHeader.min.js │ │ │ │ │ └── FixedHeader.min.js.gz │ │ │ │ ├── top_bottom_left_right.html │ │ │ │ ├── top_left.html │ │ │ │ ├── two_tables.html │ │ │ │ └── zIndexes.html │ │ │ ├── KeyTable │ │ │ │ ├── datatable.html │ │ │ │ ├── datatable_scrolling.html │ │ │ │ ├── editing.html │ │ │ │ ├── form.html │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ │ ├── KeyTable.js │ │ │ │ │ ├── KeyTable.min.js │ │ │ │ │ └── KeyTable.min.js.gz │ │ │ ├── Scroller │ │ │ │ ├── api_scrolling.html │ │ │ │ ├── index.html │ │ │ │ ├── large_js_source.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ └── dataTables.scroller.css │ │ │ │ │ ├── data │ │ │ │ │ │ ├── 2500.txt │ │ │ │ │ │ └── server_processing.php │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── Scroller.html │ │ │ │ │ │ ├── Scroller.oDefaults.html │ │ │ │ │ │ ├── baed189d4a.html │ │ │ │ │ │ ├── c6053fac6b.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── loading-background.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ │ │ ├── dataTables.scroller.min.js │ │ │ │ │ │ └── dataTables.scroller.min.js.gz │ │ │ │ ├── server-side_processing.html │ │ │ │ └── state_saving.html │ │ │ └── TableTools │ │ │ │ ├── alt_init.html │ │ │ │ ├── alter_buttons.html │ │ │ │ ├── bootstrap.html │ │ │ │ ├── button_text.html │ │ │ │ ├── collection.html │ │ │ │ ├── defaults.html │ │ │ │ ├── index.html │ │ │ │ ├── media │ │ │ │ ├── as3 │ │ │ │ │ ├── ZeroClipboard.as │ │ │ │ │ ├── ZeroClipboardPdf.as │ │ │ │ │ └── lib │ │ │ │ │ │ └── AlivePDF.swc │ │ │ │ ├── css │ │ │ │ │ ├── TableTools.css │ │ │ │ │ └── TableTools_JUI.css │ │ │ │ ├── images │ │ │ │ │ ├── background.png │ │ │ │ │ ├── collection.png │ │ │ │ │ ├── collection_hover.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── copy_hover.png │ │ │ │ │ ├── csv.png │ │ │ │ │ ├── csv_hover.png │ │ │ │ │ ├── pdf.png │ │ │ │ │ ├── pdf_hover.png │ │ │ │ │ ├── print.png │ │ │ │ │ ├── print_hover.png │ │ │ │ │ ├── psd │ │ │ │ │ │ ├── collection.psd │ │ │ │ │ │ ├── copy document.psd │ │ │ │ │ │ ├── file_types.psd │ │ │ │ │ │ └── printer.psd │ │ │ │ │ ├── xls.png │ │ │ │ │ └── xls_hover.png │ │ │ │ ├── js │ │ │ │ │ ├── TableTools.js │ │ │ │ │ ├── TableTools.min.js │ │ │ │ │ ├── TableTools.min.js.gz │ │ │ │ │ └── ZeroClipboard.js │ │ │ │ └── swf │ │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ │ └── copy_csv_xls_pdf.swf │ │ │ │ ├── multi_instance.html │ │ │ │ ├── multiple_tables.html │ │ │ │ ├── pdf_message.html │ │ │ │ ├── plug-in.html │ │ │ │ ├── select_multi.html │ │ │ │ ├── select_single.html │ │ │ │ ├── swf_path.html │ │ │ │ ├── tabs.html │ │ │ │ └── theme.html │ │ ├── license-bsd.txt │ │ ├── license-gpl2.txt │ │ ├── media │ │ │ ├── css │ │ │ │ ├── demo_page.css │ │ │ │ ├── demo_table.css │ │ │ │ ├── demo_table_jui.css │ │ │ │ ├── jquery.dataTables.css │ │ │ │ └── jquery.dataTables_themeroller.css │ │ │ ├── images │ │ │ │ ├── Sorting icons.psd │ │ │ │ ├── back_disabled.png │ │ │ │ ├── back_enabled.png │ │ │ │ ├── back_enabled_hover.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── forward_disabled.png │ │ │ │ ├── forward_enabled.png │ │ │ │ ├── forward_enabled_hover.png │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ └── sort_desc_disabled.png │ │ │ ├── js │ │ │ │ ├── jquery.dataTables.js │ │ │ │ ├── jquery.dataTables.min.js │ │ │ │ └── jquery.js │ │ │ ├── src │ │ │ │ ├── DataTables.js │ │ │ │ ├── api │ │ │ │ │ ├── api.internal.js │ │ │ │ │ ├── api.methods.js │ │ │ │ │ └── api.static.js │ │ │ │ ├── core │ │ │ │ │ ├── core.ajax.js │ │ │ │ │ ├── core.columns.js │ │ │ │ │ ├── core.constructor.js │ │ │ │ │ ├── core.data.js │ │ │ │ │ ├── core.draw.js │ │ │ │ │ ├── core.filter.js │ │ │ │ │ ├── core.info.js │ │ │ │ │ ├── core.init.js │ │ │ │ │ ├── core.length.js │ │ │ │ │ ├── core.page.js │ │ │ │ │ ├── core.processing.js │ │ │ │ │ ├── core.scrolling.js │ │ │ │ │ ├── core.sizing.js │ │ │ │ │ ├── core.sort.js │ │ │ │ │ ├── core.state.js │ │ │ │ │ └── core.support.js │ │ │ │ ├── ext │ │ │ │ │ ├── ext.classes.js │ │ │ │ │ ├── ext.paging.js │ │ │ │ │ ├── ext.sorting.js │ │ │ │ │ └── ext.types.js │ │ │ │ └── model │ │ │ │ │ ├── model.column.js │ │ │ │ │ ├── model.defaults.columns.js │ │ │ │ │ ├── model.defaults.js │ │ │ │ │ ├── model.ext.js │ │ │ │ │ ├── model.row.js │ │ │ │ │ ├── model.search.js │ │ │ │ │ └── model.settings.js │ │ │ └── unit_testing │ │ │ │ ├── controller.js │ │ │ │ ├── controller.php │ │ │ │ ├── index.html │ │ │ │ ├── performance │ │ │ │ ├── draw.html │ │ │ │ ├── large.php │ │ │ │ ├── page.html │ │ │ │ └── sort.html │ │ │ │ ├── templates │ │ │ │ ├── -complex_header.php │ │ │ │ ├── 2512.php │ │ │ │ ├── 6776.php │ │ │ │ ├── complex_header_2.php │ │ │ │ ├── deferred_table.php │ │ │ │ ├── dom_data.php │ │ │ │ ├── dom_data_th.php │ │ │ │ ├── dom_data_two_headers.php │ │ │ │ ├── dymanic_table.php │ │ │ │ ├── empty_table.php │ │ │ │ ├── html_table.php │ │ │ │ ├── js_data.php │ │ │ │ ├── js_data_mixed_types.php │ │ │ │ └── two_tables.php │ │ │ │ ├── tests │ │ │ │ └── 1_dom │ │ │ │ │ └── _zero_config.js │ │ │ │ ├── tests_onhold │ │ │ │ ├── 1_dom │ │ │ │ │ ├── -complex_header.js │ │ │ │ │ ├── -iDraw.js │ │ │ │ │ ├── 2512.js │ │ │ │ │ ├── 2530-2.js │ │ │ │ │ ├── 2530.js │ │ │ │ │ ├── 2569.js │ │ │ │ │ ├── 2600.js │ │ │ │ │ ├── 2608.js │ │ │ │ │ ├── 2635.js │ │ │ │ │ ├── 2746-stable-sort.js │ │ │ │ │ ├── 2799.js │ │ │ │ │ ├── 2840-restore-table-width.js │ │ │ │ │ ├── 2914-state-save-sort.js │ │ │ │ │ ├── 5396-fnUpdate-arrays-mData.js │ │ │ │ │ ├── 5396-fnUpdate-arrays.js │ │ │ │ │ ├── 5508-xscroll-zero-content.js │ │ │ │ │ ├── 6776-scrolling-table-grows.js │ │ │ │ │ ├── _getDataFunctions.js │ │ │ │ │ ├── _setDataFunctions.js │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.bVisible2.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfiniteScroll.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bJQueryUI.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortCellsTop.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnCookieCallback.js │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ ├── fnDeleteRow.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnFilter.js │ │ │ │ │ ├── fnFooterCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInfoCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── fnSetColumnVis.js │ │ │ │ │ ├── fnSetColumnVis2.js │ │ │ │ │ ├── html-autodetect-sort.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ ├── sPaginationType.js │ │ │ │ │ ├── sScrollXY.js │ │ │ │ │ └── th_in_body.js │ │ │ │ ├── 2_js │ │ │ │ │ ├── 39-nested-null.js │ │ │ │ │ ├── 6872-default-content-missing-props.js │ │ │ │ │ ├── 8549--string-sorting-nonstrings.js │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnFooterCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── js_data_mixed_types.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ ├── 3_ajax │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── fnServerData.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sLoadingRecords.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxDataProp.js │ │ │ │ │ ├── sAjaxDataProp2.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ ├── 4_server-side │ │ │ │ │ ├── -iDraw.js │ │ │ │ │ ├── 2440.js │ │ │ │ │ ├── 2569.js │ │ │ │ │ ├── 2600.js │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfiniteScroll.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── iDeferLoading.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxDataProp.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ ├── 5_ajax_objects │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── _zero_config_arrays_subobjects.js │ │ │ │ │ ├── _zero_config_deep.js │ │ │ │ │ ├── _zero_config_mDataProp.js │ │ │ │ │ ├── _zero_config_null_source.js │ │ │ │ │ ├── _zero_config_objects.js │ │ │ │ │ ├── _zero_config_objects_subarrays.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── fnServerData.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ └── 6_delayed_rendering │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── fnServerData.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxDataProp.js │ │ │ │ │ ├── sAjaxDataProp2.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ └── unit_test.js │ │ ├── package.json │ │ └── scripts │ │ │ ├── jshint.config │ │ │ ├── make.sh │ │ │ └── unit_tests.sh │ ├── bootstrap-colorpicker │ │ ├── css │ │ │ └── colorpicker.css │ │ ├── img │ │ │ ├── alpha.png │ │ │ ├── hue.png │ │ │ └── saturation.png │ │ ├── js │ │ │ └── bootstrap-colorpicker.js │ │ └── less │ │ │ └── colorpicker.less │ ├── bootstrap-datepicker │ │ ├── css │ │ │ └── datepicker.css │ │ ├── js │ │ │ └── bootstrap-datepicker.js │ │ └── less │ │ │ └── datepicker.less │ ├── bootstrap-daterangepicker │ │ ├── README.md │ │ ├── date.js │ │ ├── daterangepicker-bs3.css │ │ ├── daterangepicker.css │ │ ├── daterangepicker.js │ │ ├── examples.html │ │ ├── moment.js │ │ └── moment.min.js │ ├── bootstrap-datetimepicker │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ │ ├── build.less │ │ │ └── build_standalone.less │ │ ├── css │ │ │ └── datetimepicker.css │ │ ├── js │ │ │ ├── bootstrap-datetimepicker.js │ │ │ ├── bootstrap-datetimepicker.min.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datetimepicker.bg.js │ │ │ │ ├── bootstrap-datetimepicker.ca.js │ │ │ │ ├── bootstrap-datetimepicker.cs.js │ │ │ │ ├── bootstrap-datetimepicker.da.js │ │ │ │ ├── bootstrap-datetimepicker.de.js │ │ │ │ ├── bootstrap-datetimepicker.el.js │ │ │ │ ├── bootstrap-datetimepicker.es.js │ │ │ │ ├── bootstrap-datetimepicker.fi.js │ │ │ │ ├── bootstrap-datetimepicker.fr.js │ │ │ │ ├── bootstrap-datetimepicker.he.js │ │ │ │ ├── bootstrap-datetimepicker.hr.js │ │ │ │ ├── bootstrap-datetimepicker.hu.js │ │ │ │ ├── bootstrap-datetimepicker.id.js │ │ │ │ ├── bootstrap-datetimepicker.is.js │ │ │ │ ├── bootstrap-datetimepicker.it.js │ │ │ │ ├── bootstrap-datetimepicker.ja.js │ │ │ │ ├── bootstrap-datetimepicker.kr.js │ │ │ │ ├── bootstrap-datetimepicker.lt.js │ │ │ │ ├── bootstrap-datetimepicker.lv.js │ │ │ │ ├── bootstrap-datetimepicker.ms.js │ │ │ │ ├── bootstrap-datetimepicker.nb.js │ │ │ │ ├── bootstrap-datetimepicker.nl.js │ │ │ │ ├── bootstrap-datetimepicker.pl.js │ │ │ │ ├── bootstrap-datetimepicker.pt-BR.js │ │ │ │ ├── bootstrap-datetimepicker.pt.js │ │ │ │ ├── bootstrap-datetimepicker.ro.js │ │ │ │ ├── bootstrap-datetimepicker.rs-latin.js │ │ │ │ ├── bootstrap-datetimepicker.rs.js │ │ │ │ ├── bootstrap-datetimepicker.ru.js │ │ │ │ ├── bootstrap-datetimepicker.sk.js │ │ │ │ ├── bootstrap-datetimepicker.sl.js │ │ │ │ ├── bootstrap-datetimepicker.sv.js │ │ │ │ ├── bootstrap-datetimepicker.sw.js │ │ │ │ ├── bootstrap-datetimepicker.th.js │ │ │ │ ├── bootstrap-datetimepicker.tr.js │ │ │ │ ├── bootstrap-datetimepicker.ua.js │ │ │ │ ├── bootstrap-datetimepicker.uk.js │ │ │ │ ├── bootstrap-datetimepicker.zh-CN.js │ │ │ │ └── bootstrap-datetimepicker.zh-TW.js │ │ ├── less │ │ │ └── datetimepicker.less │ │ ├── sample │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── img │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ └── bootstrap.min.js │ │ │ ├── index.html │ │ │ └── jquery │ │ │ │ └── jquery-1.8.3.min.js │ │ ├── screenshot │ │ │ ├── standard_day.png │ │ │ ├── standard_day_meridian.png │ │ │ ├── standard_decade.png │ │ │ ├── standard_full.png │ │ │ ├── standard_hour.png │ │ │ ├── standard_hour_meridian.png │ │ │ ├── standard_month.png │ │ │ └── standard_year.png │ │ └── tests │ │ │ ├── README.md │ │ │ ├── _coverage.html │ │ │ ├── assets │ │ │ ├── coverage.js │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── mock.js │ │ │ ├── qunit-logging.js │ │ │ ├── qunit.css │ │ │ ├── qunit.js │ │ │ └── utils.js │ │ │ ├── run-qunit.js │ │ │ ├── suites │ │ │ ├── component.js │ │ │ ├── events.js │ │ │ ├── formats.js │ │ │ ├── inline.js │ │ │ ├── keyboard_navigation │ │ │ │ ├── 2011.js │ │ │ │ ├── 2012.js │ │ │ │ └── all.js │ │ │ ├── mouse_navigation │ │ │ │ ├── 2011.js │ │ │ │ ├── 2012.js │ │ │ │ └── all.js │ │ │ └── options.js │ │ │ ├── tests.html │ │ │ └── tests.min.html │ ├── bootstrap-fileupload │ │ ├── bootstrap-fileupload.css │ │ └── bootstrap-fileupload.js │ ├── bootstrap-inputmask │ │ ├── bootstrap-inputmask.js │ │ └── bootstrap-inputmask.min.js │ ├── bootstrap-switch │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── examples │ │ │ └── index.html │ │ └── static │ │ │ ├── js │ │ │ ├── bootstrap-switch.js │ │ │ └── bootstrap-switch.min.js │ │ │ ├── less │ │ │ ├── bootstrap-switch.less │ │ │ └── deps │ │ │ │ ├── mixins.less │ │ │ │ └── variables.less │ │ │ └── stylesheets │ │ │ ├── bootstrap-switch-conquer.css │ │ │ ├── bootstrap-switch.css │ │ │ └── flat-ui-fonts.css │ ├── bootstrap-timepicker │ │ ├── .gitignore │ │ ├── README.md │ │ ├── compiled │ │ │ └── timepicker.css │ │ ├── js │ │ │ └── bootstrap-timepicker.js │ │ └── less │ │ │ └── timepicker.less │ ├── bootstrap-wysihtml5 │ │ ├── bootstrap-wysihtml5.css │ │ ├── bootstrap-wysihtml5.js │ │ ├── locales │ │ │ ├── bootstrap-wysihtml5.ar-AR.js │ │ │ ├── bootstrap-wysihtml5.bg-BG.js │ │ │ ├── bootstrap-wysihtml5.ca-CT.js │ │ │ ├── bootstrap-wysihtml5.cs-CZ.js │ │ │ ├── bootstrap-wysihtml5.da-DK.js │ │ │ ├── bootstrap-wysihtml5.de-DE.js │ │ │ ├── bootstrap-wysihtml5.el-GR.js │ │ │ ├── bootstrap-wysihtml5.es-AR.js │ │ │ ├── bootstrap-wysihtml5.es-ES.js │ │ │ ├── bootstrap-wysihtml5.fr-FR.js │ │ │ ├── bootstrap-wysihtml5.hr-HR.js │ │ │ ├── bootstrap-wysihtml5.it-IT.js │ │ │ ├── bootstrap-wysihtml5.ja-JP.js │ │ │ ├── bootstrap-wysihtml5.ko-KR.js │ │ │ ├── bootstrap-wysihtml5.lt-LT.js │ │ │ ├── bootstrap-wysihtml5.mo-MD.js │ │ │ ├── bootstrap-wysihtml5.nb-NB.js │ │ │ ├── bootstrap-wysihtml5.nl-NL.js │ │ │ ├── bootstrap-wysihtml5.pl-PL.js │ │ │ ├── bootstrap-wysihtml5.pt-BR.js │ │ │ ├── bootstrap-wysihtml5.ru-RU.js │ │ │ ├── bootstrap-wysihtml5.sk-SK.js │ │ │ ├── bootstrap-wysihtml5.sv-SE.js │ │ │ ├── bootstrap-wysihtml5.tr-TR.js │ │ │ ├── bootstrap-wysihtml5.ua-UA.js │ │ │ ├── bootstrap-wysihtml5.zh-CN.js │ │ │ └── bootstrap-wysihtml5.zh-TW.js │ │ ├── wysihtml5-0.3.0.js │ │ └── wysiwyg-color.css │ ├── chart-master │ │ ├── .gitignore │ │ ├── Chart.js │ │ ├── Chart.min.js │ │ ├── LICENSE.md │ │ ├── component.json │ │ ├── docs │ │ │ ├── Chart.js │ │ │ ├── index.html │ │ │ ├── prettify.css │ │ │ ├── prettify.js │ │ │ ├── prettify.less │ │ │ ├── styles.css │ │ │ └── styles.less │ │ ├── readme.md │ │ ├── samples │ │ │ ├── bar.html │ │ │ ├── doughnut.html │ │ │ ├── line.html │ │ │ ├── pie.html │ │ │ ├── polarArea.html │ │ │ ├── radar.html │ │ │ └── sixup.html │ │ └── site │ │ │ ├── assets │ │ │ ├── 6charts.png │ │ │ ├── Chart.js │ │ │ ├── effects.js │ │ │ ├── excanvas.js │ │ │ ├── html.png │ │ │ └── simple.png │ │ │ ├── index.html │ │ │ └── styles.css │ ├── ckeditor │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── fakeobjects │ │ │ │ └── images │ │ │ │ │ └── spacer.gif │ │ │ ├── icons.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ └── anchor.png │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ └── icon.png │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── scayt │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ └── zh-cn.js │ │ │ │ │ └── specialchar.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ └── wsc.js │ │ ├── samples │ │ │ ├── ajax.html │ │ │ ├── api.html │ │ │ ├── appendto.html │ │ │ ├── assets │ │ │ │ ├── inlineall │ │ │ │ │ └── logo.png │ │ │ │ ├── outputxhtml │ │ │ │ │ └── outputxhtml.css │ │ │ │ ├── posteddata.php │ │ │ │ ├── sample.css │ │ │ │ ├── sample.jpg │ │ │ │ └── uilanguages │ │ │ │ │ └── languages.js │ │ │ ├── divreplace.html │ │ │ ├── index.html │ │ │ ├── inlineall.html │ │ │ ├── inlinebycode.html │ │ │ ├── plugins │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── htmlwriter │ │ │ │ │ ├── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ └── outputhtml.html │ │ │ │ ├── magicline │ │ │ │ │ └── magicline.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ └── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ ├── readonly.html │ │ │ ├── replacebyclass.html │ │ │ ├── replacebycode.html │ │ │ ├── sample.css │ │ │ ├── sample.js │ │ │ ├── sample_posteddata.php │ │ │ ├── tabindex.html │ │ │ ├── uicolor.html │ │ │ ├── uilanguages.html │ │ │ └── xhtmlstyle.html │ │ ├── skins │ │ │ └── moono │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── dialog_opera.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ └── mini.png │ │ │ │ └── readme.md │ │ └── styles.js │ ├── data-tables │ │ ├── DT_bootstrap.css │ │ ├── DT_bootstrap.js │ │ ├── images │ │ │ ├── sort_asc.png │ │ │ ├── sort_both.png │ │ │ └── sort_desc.png │ │ └── jquery.dataTables.js │ ├── dropzone │ │ ├── css │ │ │ ├── basic.css │ │ │ ├── dropzone.css │ │ │ └── stylus │ │ │ │ ├── basic.styl │ │ │ │ └── dropzone.styl │ │ ├── dropzone-amd-module.js │ │ ├── dropzone.js │ │ ├── images │ │ │ ├── spritemap.png │ │ │ └── spritemap@2x.png │ │ └── upload.php │ ├── fancybox │ │ ├── .gitattributes │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.txt │ │ ├── README.md │ │ ├── README.txt │ │ ├── demo │ │ │ ├── 1_b.jpg │ │ │ ├── 1_s.jpg │ │ │ ├── 2_b.jpg │ │ │ ├── 2_s.jpg │ │ │ ├── 3_b.jpg │ │ │ ├── 3_s.jpg │ │ │ ├── 4_b.jpg │ │ │ ├── 4_s.jpg │ │ │ ├── 5_b.jpg │ │ │ ├── 5_s.jpg │ │ │ ├── ajax.txt │ │ │ ├── iframe.html │ │ │ └── index.html │ │ ├── lib │ │ │ ├── jquery-1.8.2.min.js │ │ │ └── jquery.mousewheel-3.0.6.pack.js │ │ └── source │ │ │ ├── blank.gif │ │ │ ├── fancybox_loading.gif │ │ │ ├── fancybox_overlay.png │ │ │ ├── fancybox_sprite.png │ │ │ ├── helpers │ │ │ ├── fancybox_buttons.png │ │ │ ├── jquery.fancybox-buttons.css │ │ │ ├── jquery.fancybox-buttons.js │ │ │ ├── jquery.fancybox-media.js │ │ │ ├── jquery.fancybox-thumbs.css │ │ │ └── jquery.fancybox-thumbs.js │ │ │ ├── jquery.fancybox.css │ │ │ ├── jquery.fancybox.js │ │ │ └── jquery.fancybox.pack.js │ ├── file-uploader │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── angularjs.html │ │ ├── basic-plus.html │ │ ├── basic.html │ │ ├── blueimp-file-upload.jquery.json │ │ ├── bower.json │ │ ├── cors │ │ │ ├── postmessage.html │ │ │ └── result.html │ │ ├── css │ │ │ ├── demo-ie8.css │ │ │ ├── demo.css │ │ │ ├── jquery.fileupload-noscript.css │ │ │ ├── jquery.fileupload-ui-noscript.css │ │ │ ├── jquery.fileupload-ui.css │ │ │ ├── jquery.fileupload.css │ │ │ └── style.css │ │ ├── img │ │ │ ├── loading.gif │ │ │ └── progressbar.gif │ │ ├── index.html │ │ ├── jquery-ui.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── cors │ │ │ │ ├── jquery.postmessage-transport.js │ │ │ │ └── jquery.xdr-transport.js │ │ │ ├── jquery.fileupload-angular.js │ │ │ ├── jquery.fileupload-audio.js │ │ │ ├── jquery.fileupload-image.js │ │ │ ├── jquery.fileupload-jquery-ui.js │ │ │ ├── jquery.fileupload-process.js │ │ │ ├── jquery.fileupload-ui.js │ │ │ ├── jquery.fileupload-validate.js │ │ │ ├── jquery.fileupload-video.js │ │ │ ├── jquery.fileupload.js │ │ │ ├── jquery.iframe-transport.js │ │ │ ├── main.js │ │ │ └── vendor │ │ │ │ └── jquery.ui.widget.js │ │ ├── package.json │ │ ├── server │ │ │ ├── gae-go │ │ │ │ ├── app.yaml │ │ │ │ ├── app │ │ │ │ │ └── main.go │ │ │ │ └── static │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── robots.txt │ │ │ ├── gae-python │ │ │ │ ├── app.yaml │ │ │ │ ├── main.py │ │ │ │ └── static │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── robots.txt │ │ │ ├── node │ │ │ │ ├── .gitignore │ │ │ │ ├── package.json │ │ │ │ ├── public │ │ │ │ │ └── files │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── server.js │ │ │ │ └── tmp │ │ │ │ │ └── .gitignore │ │ │ └── php │ │ │ │ ├── UploadHandler.php │ │ │ │ ├── files │ │ │ │ ├── .gitignore │ │ │ │ └── .htaccess │ │ │ │ └── index.php │ │ └── test │ │ │ ├── index.html │ │ │ └── test.js │ ├── flot │ │ ├── API.txt │ │ ├── FAQ.txt │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── NEWS.txt │ │ ├── PLUGINS.txt │ │ ├── README.txt │ │ ├── examples │ │ │ ├── ajax.html │ │ │ ├── annotating.html │ │ │ ├── arrow-down.gif │ │ │ ├── arrow-left.gif │ │ │ ├── arrow-right.gif │ │ │ ├── arrow-up.gif │ │ │ ├── basic.html │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ ├── data-eu-gdp-growth-5.json │ │ │ ├── data-eu-gdp-growth.json │ │ │ ├── data-japan-gdp-growth.json │ │ │ ├── data-usa-gdp-growth.json │ │ │ ├── graph-types.html │ │ │ ├── hs-2004-27-a-large_web.jpg │ │ │ ├── image.html │ │ │ ├── index.html │ │ │ ├── interacting-axes.html │ │ │ ├── interacting.html │ │ │ ├── layout.css │ │ │ ├── multiple-axes.html │ │ │ ├── navigate.html │ │ │ ├── percentiles.html │ │ │ ├── pie.html │ │ │ ├── realtime.html │ │ │ ├── resize.html │ │ │ ├── selection.html │ │ │ ├── setting-options.html │ │ │ ├── stacking.html │ │ │ ├── symbols.html │ │ │ ├── thresholding.html │ │ │ ├── time.html │ │ │ ├── tracking.html │ │ │ ├── turning-series.html │ │ │ ├── visitors.html │ │ │ └── zooming.html │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── jquery.colorhelpers.js │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.fillbetween.js │ │ ├── jquery.flot.image.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.navigate.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.selection.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.flot.symbol.js │ │ ├── jquery.flot.threshold.js │ │ └── jquery.js │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── spinning.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _spinning.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ ├── fuelux │ │ ├── COPYING │ │ ├── README.md │ │ ├── css │ │ │ ├── tree-style.css │ │ │ └── tree.css │ │ ├── img │ │ │ └── tree-icons.png │ │ └── js │ │ │ ├── spinner.js │ │ │ ├── spinner.min.js │ │ │ ├── tree.js │ │ │ └── tree.min.js │ ├── fullcalendar │ │ ├── GPL-LICENSE.txt │ │ ├── MIT-LICENSE.txt │ │ ├── changelog.txt │ │ ├── demos │ │ │ ├── agenda-views.html │ │ │ ├── basic-views.html │ │ │ ├── cupertino │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png │ │ │ │ │ ├── ui-bg_flat_15_cd0a0a_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_e4f1fb_1x400.png │ │ │ │ │ ├── ui-bg_glass_50_3baae3_1x400.png │ │ │ │ │ ├── ui-bg_glass_80_d7ebf9_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_70_000000_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_deedf7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_25_ffef8f_1x100.png │ │ │ │ │ ├── ui-icons_2694e8_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_3d80b3_256x240.png │ │ │ │ │ ├── ui-icons_72a7cf_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ └── theme.css │ │ │ ├── default.html │ │ │ ├── external-dragging.html │ │ │ ├── gcal.html │ │ │ ├── json-events.php │ │ │ ├── json.html │ │ │ ├── selectable.html │ │ │ └── theme.html │ │ ├── fullcalendar │ │ │ ├── bootstrap-fullcalendar.css │ │ │ ├── fullcalendar.css │ │ │ ├── fullcalendar.js │ │ │ ├── fullcalendar.min.js │ │ │ ├── fullcalendar.print.css │ │ │ └── gcal.js │ │ └── jquery │ │ │ ├── jquery-1.8.1.min.js │ │ │ └── jquery-ui-1.8.23.custom.min.js │ ├── gritter │ │ ├── README.markdown │ │ ├── css │ │ │ └── jquery.gritter.css │ │ ├── images │ │ │ ├── gritter-blue.png │ │ │ ├── gritter-brown.png │ │ │ ├── gritter-light.png │ │ │ ├── gritter-long.png │ │ │ ├── gritter-purple.png │ │ │ ├── gritter.png │ │ │ └── ie-spacer.gif │ │ ├── images_original │ │ │ ├── gritter-light.png │ │ │ ├── gritter-long.png │ │ │ ├── gritter.png │ │ │ ├── ie-spacer.gif │ │ │ └── trees.jpg │ │ ├── index.html │ │ └── js │ │ │ ├── jquery.gritter.js │ │ │ └── jquery.gritter.min.js │ ├── jcrop │ │ ├── MIT-LICENSE.txt │ │ ├── README.md │ │ ├── crop-demo.php │ │ ├── css │ │ │ ├── Jcrop.gif │ │ │ ├── jquery.Jcrop.css │ │ │ └── jquery.Jcrop.min.css │ │ ├── demos │ │ │ ├── crop.php │ │ │ ├── demo_files │ │ │ │ ├── demos.css │ │ │ │ ├── image1.jpg │ │ │ │ ├── image2.jpg │ │ │ │ ├── image3.jpg │ │ │ │ ├── image4.jpg │ │ │ │ ├── image5.jpg │ │ │ │ ├── main.css │ │ │ │ ├── pool.jpg │ │ │ │ ├── sago.jpg │ │ │ │ ├── sagomod.jpg │ │ │ │ └── sagomod.png │ │ │ ├── non-image.html │ │ │ ├── styling.html │ │ │ ├── tutorial1.html │ │ │ ├── tutorial2.html │ │ │ ├── tutorial3.html │ │ │ ├── tutorial4.html │ │ │ └── tutorial5.html │ │ ├── index.html │ │ └── js │ │ │ ├── jquery.Jcrop.js │ │ │ ├── jquery.Jcrop.min.js │ │ │ ├── jquery.color.js │ │ │ └── jquery.min.js │ ├── jquery-easy-pie-chart │ │ ├── Makefile │ │ ├── Readme.md │ │ ├── examples │ │ │ ├── excanvas.js │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── img │ │ │ └── easy-pie-chart.png │ │ ├── jquery.easy-pie-chart.coffee │ │ ├── jquery.easy-pie-chart.css │ │ └── jquery.easy-pie-chart.js │ ├── jquery-file-upload │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── blueimp-file-upload.jquery.json │ │ ├── cors │ │ │ ├── postmessage.html │ │ │ └── result.html │ │ ├── css │ │ │ ├── jquery.fileupload-ui-noscript.css │ │ │ ├── jquery.fileupload-ui.css │ │ │ └── style.css │ │ ├── img │ │ │ ├── loading.gif │ │ │ └── progressbar.gif │ │ ├── index.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── cors │ │ │ │ ├── jquery.postmessage-transport.js │ │ │ │ └── jquery.xdr-transport.js │ │ │ ├── jquery.fileupload-angular.js │ │ │ ├── jquery.fileupload-audio.js │ │ │ ├── jquery.fileupload-fp.js │ │ │ ├── jquery.fileupload-image.js │ │ │ ├── jquery.fileupload-jquery-ui.js │ │ │ ├── jquery.fileupload-process.js │ │ │ ├── jquery.fileupload-ui.js │ │ │ ├── jquery.fileupload-validate.js │ │ │ ├── jquery.fileupload-video.js │ │ │ ├── jquery.fileupload.js │ │ │ ├── jquery.iframe-transport.js │ │ │ ├── main.js │ │ │ └── vendor │ │ │ │ ├── canvas-to-blob.min.js │ │ │ │ ├── jquery.ui.widget.js │ │ │ │ ├── load-image.min.js │ │ │ │ └── tmpl.min.js │ │ ├── package.json │ │ ├── server │ │ │ ├── gae-go │ │ │ │ ├── app.yaml │ │ │ │ ├── app │ │ │ │ │ └── main.go │ │ │ │ └── static │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── robots.txt │ │ │ ├── gae-python │ │ │ │ ├── app.yaml │ │ │ │ ├── main.py │ │ │ │ └── static │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── robots.txt │ │ │ ├── node │ │ │ │ ├── .gitignore │ │ │ │ ├── package.json │ │ │ │ ├── public │ │ │ │ │ └── files │ │ │ │ │ │ └── thumbnail │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── server.js │ │ │ │ └── tmp │ │ │ │ │ └── .gitignore │ │ │ └── php │ │ │ │ ├── UploadHandler.php │ │ │ │ ├── files │ │ │ │ ├── .htaccess │ │ │ │ └── style-responsive.css │ │ │ │ └── index.php │ │ └── test │ │ │ ├── index.html │ │ │ └── test.js │ ├── jquery-knob │ │ ├── README.md │ │ ├── index.html │ │ └── js │ │ │ └── jquery.knob.js │ ├── jquery-multi-select │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── README.markdown │ │ ├── bower.json │ │ ├── css │ │ │ └── multi-select.css │ │ ├── img │ │ │ ├── switch.png │ │ │ └── switch_original.png │ │ ├── js │ │ │ ├── jquery.multi-select.js │ │ │ └── jquery.quicksearch.js │ │ ├── multi-select.jquery.json │ │ └── test │ │ │ ├── SpecRunner.html │ │ │ ├── lib │ │ │ ├── jasmine-1.2.0 │ │ │ │ ├── MIT.LICENSE │ │ │ │ ├── jasmine-html.js │ │ │ │ ├── jasmine.css │ │ │ │ └── jasmine.js │ │ │ └── jasmine-jquery.js │ │ │ ├── spec │ │ │ ├── SpecHelper.js │ │ │ └── multiSelectSpec.js │ │ │ └── src │ │ │ └── jquery.js │ ├── jquery-tags-input │ │ ├── README.md │ │ ├── example.html │ │ ├── jquery.tagsinput.css │ │ ├── jquery.tagsinput.js │ │ ├── jquery.tagsinput.min.js │ │ └── test │ │ │ ├── fake_json_endpoint.html │ │ │ └── fake_plaintext_endpoint.html │ ├── jquery-ui │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── jquery-ui-1.10.1.custom.css │ │ ├── jquery-ui-1.10.1.custom.min.css │ │ ├── jquery-ui-1.10.1.custom.min.js │ │ ├── jquery-ui-1.10.2.custom.min.js │ │ └── jquery-ui-1.9.2.custom.min.js │ ├── morris.js-0.4.3 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── component.json │ │ ├── examples │ │ │ ├── _template.html │ │ │ ├── area-as-line.html │ │ │ ├── area.html │ │ │ ├── bar-colors.html │ │ │ ├── bar-no-axes.html │ │ │ ├── bar.html │ │ │ ├── days.html │ │ │ ├── decimal-custom-hover.html │ │ │ ├── diagonal-xlabels-bar.html │ │ │ ├── diagonal-xlabels.html │ │ │ ├── donut-colors.html │ │ │ ├── donut-formatter.html │ │ │ ├── donut.html │ │ │ ├── dst.html │ │ │ ├── events.html │ │ │ ├── goals.html │ │ │ ├── lib │ │ │ │ ├── example.css │ │ │ │ ├── example.js │ │ │ │ ├── prettify.css │ │ │ │ └── prettify.js │ │ │ ├── months-no-smooth.html │ │ │ ├── negative.html │ │ │ ├── no-grid.html │ │ │ ├── non-continuous.html │ │ │ ├── non-date.html │ │ │ ├── quarters.html │ │ │ ├── stacked_bars.html │ │ │ ├── timestamps.html │ │ │ ├── updating.html │ │ │ ├── weeks.html │ │ │ └── years.html │ │ ├── grunt.js │ │ ├── less │ │ │ └── morris.core.less │ │ ├── lib │ │ │ ├── morris.area.coffee │ │ │ ├── morris.bar.coffee │ │ │ ├── morris.coffee │ │ │ ├── morris.donut.coffee │ │ │ ├── morris.grid.coffee │ │ │ ├── morris.hover.coffee │ │ │ └── morris.line.coffee │ │ ├── morris.css │ │ ├── morris.js │ │ ├── morris.min.js │ │ ├── package.json │ │ ├── raphael-min.js │ │ └── spec │ │ │ ├── lib │ │ │ ├── area │ │ │ │ └── area_spec.coffee │ │ │ ├── bar │ │ │ │ ├── bar_spec.coffee │ │ │ │ └── colours.coffee │ │ │ ├── commas_spec.coffee │ │ │ ├── donut │ │ │ │ └── donut_spec.coffee │ │ │ ├── grid │ │ │ │ ├── auto_grid_lines_spec.coffee │ │ │ │ ├── set_data_spec.coffee │ │ │ │ └── y_label_format_spec.coffee │ │ │ ├── hover_spec.coffee │ │ │ ├── label_series_spec.coffee │ │ │ ├── line │ │ │ │ └── line_spec.coffee │ │ │ ├── pad_spec.coffee │ │ │ └── parse_time_spec.coffee │ │ │ ├── specs.html │ │ │ ├── support │ │ │ └── placeholder.coffee │ │ │ └── vendor │ │ │ ├── chai-1.3.0.js │ │ │ ├── chai-jquery-1.1.0.js │ │ │ ├── jquery-1.8.2.min.js │ │ │ ├── mocha-1.6.0.css │ │ │ ├── mocha-1.6.0.js │ │ │ ├── raphael-2.1.0.min.js │ │ │ ├── sinon-1.5.0.js │ │ │ └── sinon-chai-2.1.2.js │ ├── nestable │ │ ├── README.md │ │ ├── index.html │ │ ├── jquery.nestable.css │ │ └── jquery.nestable.js │ └── xchart │ │ ├── LICENSE │ │ ├── README.md │ │ ├── d3.v3.js │ │ ├── d3.v3.min.js │ │ ├── xcharts.css │ │ ├── xcharts.js │ │ ├── xcharts.min.css │ │ └── xcharts.min.js ├── css │ ├── bootstrap-theme.min.css │ ├── bootstrap.min.css │ ├── bootstrap_override.css │ ├── font-awesome.min.css │ ├── gallery.css │ ├── image-crop.css │ ├── images │ │ ├── black.png │ │ ├── green.png │ │ └── yellow.png │ ├── invoice-print.css │ ├── isleen-style.css │ ├── navbar-fixed-top.css │ ├── owl.carousel.css │ ├── select2-bootstrap.css │ ├── style.css │ ├── style_responsive.css │ ├── table-responsive.css │ └── tasks.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── img │ ├── 404_icon.png │ ├── 500_icon.png │ ├── arrow-up.png │ ├── avatar-mini.jpg │ ├── avatar-mini2.jpg │ ├── avatar-mini3.jpg │ ├── avatar-mini4.jpg │ ├── avatar1.jpg │ ├── avatar1_small.jpg │ ├── chart-texture.jpg │ ├── chat-attach.jpg │ ├── chat-avatar.jpg │ ├── chat-avatar2.jpg │ ├── chat-search.png │ ├── checkbox │ │ ├── check-off.png │ │ ├── check-on.png │ │ ├── radio-off.png │ │ └── radio-on.png │ ├── customSelect-arrow.gif │ ├── email-img │ │ ├── banner.jpg │ │ ├── icon-cal.png │ │ ├── icon-tel.png │ │ ├── image1.png │ │ ├── image2.png │ │ ├── image3.png │ │ ├── image4.png │ │ ├── main-img.png │ │ ├── social-facebook.png │ │ ├── social-google.png │ │ ├── social-linkedin.png │ │ ├── social-twitter.png │ │ ├── social-youtube.png │ │ └── vector-lab.jpg │ ├── fb-img.jpg │ ├── file-search │ │ ├── ai.png │ │ ├── doc.png │ │ ├── email.png │ │ ├── eps.png │ │ ├── jpg.png │ │ ├── pdf.png │ │ ├── ppt.png │ │ ├── psd.png │ │ ├── rss.png │ │ ├── xls.png │ │ └── zip.png │ ├── flags │ │ ├── de.png │ │ ├── es.png │ │ ├── fr.png │ │ ├── ru.png │ │ └── us.png │ ├── follower-avatar.jpg │ ├── gallery │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ └── 7.jpg │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ ├── input-spinner.gif │ ├── left-arrow.png │ ├── lock-bg.jpg │ ├── mail-avatar.jpg │ ├── mask-square.png │ ├── mask.png │ ├── nav-expand.png │ ├── pro-ac-1.png │ ├── pro-ac-2.png │ ├── product-list │ │ ├── pro-1.jpg │ │ ├── pro-thumb-1.jpg │ │ ├── pro-thumb-2.jpg │ │ ├── pro-thumb-3.jpg │ │ ├── pro-thumb-big.jpg │ │ ├── pro1.jpg │ │ ├── pro2.jpg │ │ └── pro3.jpg │ ├── product1.jpg │ ├── product2.png │ ├── product3.png │ ├── profile-avatar.jpg │ ├── right-arrow.png │ ├── ring.jpg │ ├── search-icon.jpg │ ├── sm-img-1.jpg │ ├── sm-img-2.jpg │ ├── sm-img-3.jpg │ ├── tree-icons.png │ └── vector-lab.jpg └── js │ ├── additional-methods.min.js │ ├── advanced-form-components.js │ ├── all-chartjs.js │ ├── bootstrap-switch.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── bootstrap_min.js │ ├── common-scripts.js │ ├── count.js │ ├── draggable-portlet.js │ ├── dynamic-table.js │ ├── easy-pie-chart.js │ ├── editable-table.js │ ├── external-dragging-calendar.js │ ├── flot-chart.js │ ├── form-component.js │ ├── form-image-crop.js │ ├── form-validation-script.js │ ├── ga.js │ ├── gmaps-scripts.js │ ├── gmaps.js │ ├── gritter.js │ ├── hover-dropdown.js │ ├── html5shiv.js │ ├── jquery-1.8.3.min.js │ ├── jquery-ui-1.9.2.custom.min.js │ ├── jquery.cookie.js │ ├── jquery.customSelect.min.js │ ├── jquery.dcjqaccordion.2.7.js │ ├── jquery.dcjqaccordion.2.7.min.js │ ├── jquery.js │ ├── jquery.nicescroll.js │ ├── jquery.pulsate.min.js │ ├── jquery.scrollTo.min.js │ ├── jquery.sparkline-11.js │ ├── jquery.sparkline.js │ ├── jquery.stepy.js │ ├── jquery.tagsinput.js │ ├── jquery.ui.touch-punch.min.js │ ├── jquery.validate.min.js │ ├── modernizr.custom.js │ ├── morris-script.js │ ├── nestable.js │ ├── owl.carousel.js │ ├── pulstate.js │ ├── respond.min.js │ ├── respond.src.js │ ├── sliders.js │ ├── sparkline-chart.js │ ├── spinner.min.js │ ├── tasks.js │ ├── toucheffects.js │ └── tree.js ├── img ├── avatar-mini.jpg ├── avatar-mini2.jpg ├── avatar-mini3.jpg ├── avatar-mini4.jpg ├── avatar1_small.jpg ├── black.png ├── chat-avatar.jpg ├── green.png └── yellow.png ├── jquery ├── jquery-1.9.0.js ├── jquery-migrate-1.2.1.js ├── jquery.js └── ui │ └── 1.9.1 │ └── jquery-ui.js └── nprogress ├── nprogress.css └── nprogress.js /isleenlayout/modules/Accounts/UpdateModuleSummary.tpl: -------------------------------------------------------------------------------- 1 |

2 | {$UPDATE->getParent()->getDisplayValue('website')} 3 |
{$UPDATE->getParent()->getDisplayValue('phone')} 4 |

5 |
6 | 7 |

{$UPDATE->getParent()->getName()}

8 |
9 |
10 | 11 | -------------------------------------------------------------------------------- /isleenlayout/modules/Calendar/CalendarViewPreProcess.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 | {include file="Header.tpl"|vtemplate_path:$MODULE_NAME} 3 | {include file="BasicHeader.tpl"|vtemplate_path:$MODULE_NAME} 4 | 5 |
6 |
7 | {/strip} -------------------------------------------------------------------------------- /isleenlayout/modules/Calendar/UpdateModuleSummary.tpl: -------------------------------------------------------------------------------- 1 |

2 | {$UPDATE->getParent()->getDisplayValue('date_start')} 3 |
{$UPDATE->getParent()->getDisplayValue('due_date')} 4 |

5 | 10 | 11 | -------------------------------------------------------------------------------- /isleenlayout/modules/Campaigns/UpdateModuleSummary.tpl: -------------------------------------------------------------------------------- 1 |

2 | {$UPDATE->getParent()->getDisplayValue('campaigntype')} 3 |
{$UPDATE->getParent()->getDisplayValue('expectedrevenue')} 4 |

5 | 10 | 11 | -------------------------------------------------------------------------------- /isleenlayout/modules/Contacts/UpdateModuleSummary.tpl: -------------------------------------------------------------------------------- 1 |

2 | {$UPDATE->getParent()->getDisplayValue('email')} 3 |
{$UPDATE->getParent()->getDisplayValue('phone')} 4 |

5 | 10 | 11 | -------------------------------------------------------------------------------- /isleenlayout/modules/Documents/UpdateModuleSummary.tpl: -------------------------------------------------------------------------------- 1 |

2 | {$UPDATE->getParent()->getDisplayValue('filename')} 3 |
{$UPDATE->getParent()->getDisplayValue('modifiedtime')} 4 |

5 | 10 | 11 | -------------------------------------------------------------------------------- /isleenlayout/modules/EmailTemplates/DetailViewHeaderTitle.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 | 3 | 4 | 5 | {decode_html($RECORD->get('templatename'))}  6 | 7 | 8 | 9 | {/strip} 10 | -------------------------------------------------------------------------------- /isleenlayout/modules/Google/map.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | {$RECORD} 4 | {$SOURCE_MODULE} 5 |
6 | 7 | 8 |
9 | -------------------------------------------------------------------------------- /isleenlayout/modules/HelpDesk/UpdateModuleSummary.tpl: -------------------------------------------------------------------------------- 1 |

2 | {$UPDATE->getParent()->getDisplayValue('title')} 3 |
{$UPDATE->getParent()->getDisplayValue('parent_id')} 4 |

5 | 10 | 11 | -------------------------------------------------------------------------------- /isleenlayout/modules/HelpDesk/dashboards/DashBoardWidgetContents.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 | {if count($DATA) gt 0 } 3 | 4 |
5 | {else} 6 | 7 | {vtranslate('LBL_NO')} {vtranslate($MODULE_NAME, $MODULE_NAME)} {vtranslate('LBL_MATCHED_THIS_CRITERIA')} 8 | 9 | {/if} 10 | {/strip} 11 | -------------------------------------------------------------------------------- /isleenlayout/modules/Home/Index.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 | {extends file='defaultLayout.tpl'} 3 | {/strip} 4 | -------------------------------------------------------------------------------- /isleenlayout/modules/Install/InstallPreProcess.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 |
6 | 9 |
10 |
11 |
12 |

{vtranslate('LBL_INSTALLATION_WIZARD', 'Install')}

13 |
14 |
15 |
16 | -------------------------------------------------------------------------------- /isleenlayout/modules/Install/resources/images/check_radio_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/modules/Install/resources/images/check_radio_sprite.png -------------------------------------------------------------------------------- /isleenlayout/modules/Inventory/EditView.tpl: -------------------------------------------------------------------------------- 1 | {include file="EditViewBlocks.tpl"|@vtemplate_path:'Inventory'} 2 | {include file="LineItemsEdit.tpl"|@vtemplate_path:'Inventory'} 3 | {include file="EditViewActions.tpl"|@vtemplate_path:'Vtiger'} -------------------------------------------------------------------------------- /isleenlayout/modules/Inventory/PopupContents.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 |
3 | {include file="PopupEntries.tpl"|@vtemplate_path:$MODULE_NAME} 4 |
5 | {/strip} 6 | -------------------------------------------------------------------------------- /isleenlayout/modules/Invoice/UpdateModuleSummary.tpl: -------------------------------------------------------------------------------- 1 |

2 | {$UPDATE->getParent()->getDisplayValue('salesorder_id')} 3 |
{$UPDATE->getParent()->getDisplayValue('hdnGrandTotal')} 4 |

5 | 10 | 11 | -------------------------------------------------------------------------------- /isleenlayout/modules/Invoice/resources/Detail.js: -------------------------------------------------------------------------------- 1 | /*+*********************************************************************************** 2 | * The contents of this file are subject to the vtiger CRM Public License Version 1.0 3 | * ("License"); You may not use this file except in compliance with the License 4 | * The Original Code is: vtiger CRM Open Source 5 | * The Initial Developer of the Original Code is vtiger. 6 | * Portions created by vtiger are Copyright (C) vtiger. 7 | * All Rights Reserved. 8 | *************************************************************************************/ 9 | 10 | Inventory_Detail_Js("Invoice_Detail_Js",{},{}); -------------------------------------------------------------------------------- /isleenlayout/modules/IslDropbox/DropSelect.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/modules/IslDropbox/DropSelect.tpl -------------------------------------------------------------------------------- /isleenlayout/modules/IslDropbox/resources/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/modules/IslDropbox/resources/upload.js -------------------------------------------------------------------------------- /isleenlayout/modules/Leads/UpdateModuleSummary.tpl: -------------------------------------------------------------------------------- 1 |

2 | {$UPDATE->getParent()->getDisplayValue('email')} 3 |
{$UPDATE->getParent()->getDisplayValue('phone')} 4 |

5 | 10 | 11 | -------------------------------------------------------------------------------- /isleenlayout/modules/Leads/dashboards/DashBoardWidgetContents.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 | {if count($DATA) gt 0 } 3 | 4 |
5 | {else} 6 | 7 | {vtranslate('LBL_NO')} {vtranslate($MODULE_NAME, $MODULE_NAME)} {vtranslate('LBL_MATCHED_THIS_CRITERIA')} 8 | 9 | {/if} 10 | {/strip} 11 | -------------------------------------------------------------------------------- /isleenlayout/modules/Leads/dashboards/LeadsCreated.tpl: -------------------------------------------------------------------------------- 1 | {* License Text *} 2 | {debug}{* REMOVE THIS LINE AFTER IMPLEMENTATION *} 3 | 4 | {* modules/Leads/dashboards/LeadsCreated.php *} 5 | -------------------------------------------------------------------------------- /isleenlayout/modules/MailManager/Mainui.tpl: -------------------------------------------------------------------------------- 1 |
{include file="modules/MailManager/FolderList.tpl"}
2 | 3 | -------------------------------------------------------------------------------- /isleenlayout/modules/MailManager/Search.Popupui.tpl: -------------------------------------------------------------------------------- 1 | {* License Text *} 2 | {debug}{* REMOVE THIS LINE AFTER IMPLEMENTATION *} 3 | 4 | {* modules/MailManager/views/Search.php *} 5 | -------------------------------------------------------------------------------- /isleenlayout/modules/Migration/MigrationStep1.tpl: -------------------------------------------------------------------------------- 1 | {* License Text *} 2 | {debug}{* REMOVE THIS LINE AFTER IMPLEMENTATION *} 3 | 4 | {* modules/Migration/views/Index.php *} 5 | -------------------------------------------------------------------------------- /isleenlayout/modules/Migration/MigrationStep2.tpl: -------------------------------------------------------------------------------- 1 | {* License Text *} 2 | {debug}{* REMOVE THIS LINE AFTER IMPLEMENTATION *} 3 | 4 | {* modules/Migration/views/Index.php *} 5 | -------------------------------------------------------------------------------- /isleenlayout/modules/Mobile/generic/Footer.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /isleenlayout/modules/ModTracker/RecentActivities.tpl: -------------------------------------------------------------------------------- 1 | {* License Text *} 2 | {debug}{* REMOVE THIS LINE AFTER IMPLEMENTATION *} 3 | 4 | {* modules/ModTracker/views/ListAjax.php *} 5 | -------------------------------------------------------------------------------- /isleenlayout/modules/Potentials/UpdateModuleSummary.tpl: -------------------------------------------------------------------------------- 1 |

2 | {$UPDATE->getParent()->getDisplayValue('phone')} 3 |
{$UPDATE->getParent()->getDisplayValue('website')} 4 |

5 | -------------------------------------------------------------------------------- /isleenlayout/modules/Potentials/dashboards/DashBoardWidgetContents.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 | {if count($DATA) gt 0 } 3 | 4 |
5 | {else} 6 | 7 | {vtranslate('LBL_NO')} {vtranslate($MODULE_NAME, $MODULE_NAME)} {vtranslate('LBL_MATCHED_THIS_CRITERIA')} 8 | 9 | {/if} 10 | {/strip} -------------------------------------------------------------------------------- /isleenlayout/modules/Potentials/dashboards/Forecast.tpl: -------------------------------------------------------------------------------- 1 | {* License Text *} 2 | {debug}{* REMOVE THIS LINE AFTER IMPLEMENTATION *} 3 | 4 | {* modules/Potentials/dashboards/Forecast.php *} 5 | -------------------------------------------------------------------------------- /isleenlayout/modules/Potentials/dashboards/FunnelAmount.tpl: -------------------------------------------------------------------------------- 1 |
2 |
3 | {include file="dashboards/WidgetHeader.tpl"|@vtemplate_path:$MODULE_NAME} 4 |
5 |
6 | {include file="dashboards/DashBoardWidgetContents.tpl"|@vtemplate_path:$MODULE_NAME} 7 |
8 |
9 | 10 | {literal} 11 | 14 | {/literal} 15 | -------------------------------------------------------------------------------- /isleenlayout/modules/Potentials/dashboards/TopPotentials.tpl: -------------------------------------------------------------------------------- 1 |
2 |
3 | {include file="dashboards/WidgetHeader.tpl"|@vtemplate_path:$MODULE_NAME} 4 |
5 |
6 | {include file="dashboards/TopPotentialsContents.tpl"|@vtemplate_path:$MODULE_NAME} 7 |
8 |
9 | -------------------------------------------------------------------------------- /isleenlayout/modules/PriceBooks/UpdateModuleSummary.tpl: -------------------------------------------------------------------------------- 1 |

2 | {$UPDATE->getParent()->getDisplayValue('bookname')} 3 |
{$UPDATE->getParent()->getDisplayValue('currency_id')} 4 |

5 | 10 | 11 | -------------------------------------------------------------------------------- /isleenlayout/modules/Products/PriceBookProductPopup.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 |
3 |
{include file='PopupSearch.tpl'|@vtemplate_path:$MODULE_NAME}
4 |
5 |
{include file='PriceBookProductPopupContents.tpl'|@vtemplate_path:$PARENT_MODULE}
6 |
7 | 8 |
9 |
10 | {/strip} -------------------------------------------------------------------------------- /isleenlayout/modules/Products/UpdateModuleSummary.tpl: -------------------------------------------------------------------------------- 1 |

2 | {$UPDATE->getParent()->getDisplayValue('productcategory')} 3 |
{$UPDATE->getParent()->getDisplayValue('unit_price')} 4 |

5 | 10 | 11 | -------------------------------------------------------------------------------- /isleenlayout/modules/Project/UpdateModuleSummary.tpl: -------------------------------------------------------------------------------- 1 |

2 | {$UPDATE->getParent()->getDisplayValue('projecturl')} 3 |
{$UPDATE->getParent()->getDisplayValue('targetbudget')} 4 |
{$UPDATE->getParent()->getDisplayValue('actualenddate')} 5 |

6 | 11 | 12 | -------------------------------------------------------------------------------- /isleenlayout/modules/PurchaseOrder/UpdateModuleSummary.tpl: -------------------------------------------------------------------------------- 1 |

2 | {$UPDATE->getParent()->getDisplayValue('vendor_id')} 3 |
{$UPDATE->getParent()->getDisplayValue('tracking_no')} 4 |
{$UPDATE->getParent()->getDisplayValue('hdnGrandTotal')} 5 |

6 | 11 | 12 | -------------------------------------------------------------------------------- /isleenlayout/modules/Quotes/UpdateModuleSummary.tpl: -------------------------------------------------------------------------------- 1 |

2 | {$UPDATE->getParent()->getDisplayValue('subject')} 3 |
{$UPDATE->getParent()->getDisplayValue('validtill')} 4 |
{$UPDATE->getParent()->getDisplayValue('total')} 5 |

6 | 11 | 12 | -------------------------------------------------------------------------------- /isleenlayout/modules/Quotes/resources/Detail.js: -------------------------------------------------------------------------------- 1 | /*+*********************************************************************************** 2 | * The contents of this file are subject to the vtiger CRM Public License Version 1.0 3 | * ("License"); You may not use this file except in compliance with the License 4 | * The Original Code is: vtiger CRM Open Source 5 | * The Initial Developer of the Original Code is vtiger. 6 | * Portions created by vtiger are Copyright (C) vtiger. 7 | * All Rights Reserved. 8 | *************************************************************************************/ 9 | 10 | Inventory_Detail_Js("Quotes_Detail_Js",{},{}); -------------------------------------------------------------------------------- /isleenlayout/modules/Reports/ListViewPreProcess.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 | {include file="Header.tpl"|vtemplate_path:$MODULE} 3 | {include file="BasicHeader.tpl"|vtemplate_path:$MODULE} 4 |
5 |
6 |
7 |
8 | {include file="ListViewHeader.tpl"|vtemplate_path:$MODULE} 9 | {/strip} 10 | -------------------------------------------------------------------------------- /isleenlayout/modules/Reports/resources/ChartEdit.js: -------------------------------------------------------------------------------- 1 | 2 | /*+*********************************************************************************** 3 | * The contents of this file are subject to the vtiger CRM Public License Version 1.0 4 | * ("License"); You may not use this file except in compliance with the License 5 | * The Original Code is: vtiger CRM Open Source 6 | * The Initial Developer of the Original Code is vtiger. 7 | * Portions created by vtiger are Copyright (C) vtiger. 8 | * All Rights Reserved. 9 | *************************************************************************************/ 10 | Reports_Edit_Js("Reports_ChartEdit_Js",{},{}); -------------------------------------------------------------------------------- /isleenlayout/modules/SMSNotifier/StatusWidget.tpl: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 6 |
{$RECORD->get('tonumber')}
7 |
-------------------------------------------------------------------------------- /isleenlayout/modules/SMSNotifier/UpdateModuleSummary.tpl: -------------------------------------------------------------------------------- 1 |

2 | {$UPDATE->getParent()->getDisplayValue('message')} 3 |
{$UPDATE->getParent()->getDisplayValue('createdtime')} 4 |

5 | 10 | 11 | -------------------------------------------------------------------------------- /isleenlayout/modules/SalesOrder/UpdateModuleSummary.tpl: -------------------------------------------------------------------------------- 1 |

2 | {$UPDATE->getParent()->getDisplayValue('account_id')} 3 |
{$UPDATE->getParent()->getDisplayValue('hdnGrandTotal')} 4 |

5 | 10 | 11 | -------------------------------------------------------------------------------- /isleenlayout/modules/Services/UpdateModuleSummary.tpl: -------------------------------------------------------------------------------- 1 |

2 | {$UPDATE->getParent()->getDisplayValue('servicecategory')} 3 |
{$UPDATE->getParent()->getDisplayValue('unit_price')} 4 |

5 | 10 | 11 | -------------------------------------------------------------------------------- /isleenlayout/modules/Services/resources/Edit.js: -------------------------------------------------------------------------------- 1 | /*+*********************************************************************************** 2 | * The contents of this file are subject to the vtiger CRM Public License Version 1.0 3 | * ("License"); You may not use this file except in compliance with the License 4 | * The Original Code is: vtiger CRM Open Source 5 | * The Initial Developer of the Original Code is vtiger. 6 | * Portions created by vtiger are Copyright (C) vtiger. 7 | * All Rights Reserved. 8 | *************************************************************************************/ 9 | 10 | Products_Edit_Js("Services_Edit_Js",{},{}) -------------------------------------------------------------------------------- /isleenlayout/modules/Settings/LayoutEditor/AddBlock.tpl: -------------------------------------------------------------------------------- 1 | {* License Text *} 2 | {debug}{* REMOVE THIS LINE AFTER IMPLEMENTATION *} 3 | 4 | {* modules/Settings/LayoutEditor/views/IndexAjax.php *} 5 | -------------------------------------------------------------------------------- /isleenlayout/modules/Settings/MailConverter/Index.tpl: -------------------------------------------------------------------------------- 1 | {**} 12 | {strip} 13 | {/strip} 14 | -------------------------------------------------------------------------------- /isleenlayout/modules/Settings/ModuleManager/Step1.tpl: -------------------------------------------------------------------------------- 1 | {* License Text *} 2 | {debug}{* REMOVE THIS LINE AFTER IMPLEMENTATION *} 3 | 4 | {* modules/Settings/ModuleManager/views/ModuleImport.php *} 5 | -------------------------------------------------------------------------------- /isleenlayout/modules/Settings/Vtiger/CompanyDetailsEdit.tpl: -------------------------------------------------------------------------------- 1 | {**} 11 | {strip} 12 | {/strip} 13 | -------------------------------------------------------------------------------- /isleenlayout/modules/Settings/Workflows/resources/libraries/jquery.datepick.package-4.1.0/calendar-blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/modules/Settings/Workflows/resources/libraries/jquery.datepick.package-4.1.0/calendar-blue.gif -------------------------------------------------------------------------------- /isleenlayout/modules/Settings/Workflows/resources/libraries/jquery.datepick.package-4.1.0/calendar-green.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/modules/Settings/Workflows/resources/libraries/jquery.datepick.package-4.1.0/calendar-green.gif -------------------------------------------------------------------------------- /isleenlayout/modules/Settings/Workflows/resources/libraries/jquery.datepick.package-4.1.0/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/modules/Settings/Workflows/resources/libraries/jquery.datepick.package-4.1.0/calendar.gif -------------------------------------------------------------------------------- /isleenlayout/modules/Settings/Workflows/resources/libraries/jquery.datepick.package-4.1.0/jquery.datepick-fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/modules/Settings/Workflows/resources/libraries/jquery.datepick.package-4.1.0/jquery.datepick-fi.js -------------------------------------------------------------------------------- /isleenlayout/modules/Settings/Workflows/resources/libraries/jquery.datepick.package-4.1.0/jquery.datepick.validation.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/modules/Settings/Workflows/resources/libraries/jquery.datepick.package-4.1.0/jquery.datepick.validation.min.js -------------------------------------------------------------------------------- /isleenlayout/modules/Users/IndexPostProcess.tpl: -------------------------------------------------------------------------------- 1 |
2 |
3 | -------------------------------------------------------------------------------- /isleenlayout/modules/Users/LoginPreProcess.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 | {extends file='loginLayout.tpl'} 3 | -------------------------------------------------------------------------------- /isleenlayout/modules/Users/PreUsersUpdates.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 | {include file="Header.tpl"|vtemplate_path:$MODULE_NAME} 3 | {include file="BasicHeader.tpl"|vtemplate_path:$MODULE_NAME} 4 | {/strip} -------------------------------------------------------------------------------- /isleenlayout/modules/Users/QuickCreate.tpl: -------------------------------------------------------------------------------- 1 | {* License Text *} 2 | {debug}{* REMOVE THIS LINE AFTER IMPLEMENTATION *} 3 | 4 | {* modules/Users/views/QuickCreateAjax.php *} 5 | -------------------------------------------------------------------------------- /isleenlayout/modules/Users/SettingsMenuEnd.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 | 3 | 4 |
5 | 6 | 7 | 8 |
9 |
10 | {/strip} 11 | -------------------------------------------------------------------------------- /isleenlayout/modules/Users/UI5EmbedView.tpl: -------------------------------------------------------------------------------- 1 | {* License Text *} 2 | {debug}{* REMOVE THIS LINE AFTER IMPLEMENTATION *} 3 | 4 | {* modules/Users/views/ChangePassword.php *} 5 | -------------------------------------------------------------------------------- /isleenlayout/modules/Vendors/UpdateModuleSummary.tpl: -------------------------------------------------------------------------------- 1 |

2 | {$UPDATE->getParent()->getDisplayValue('email')} 3 |
{$UPDATE->getParent()->getDisplayValue('phone')} 4 |

5 |
6 | 7 |

{$UPDATE->getParent()->getName()}

8 |
9 |
10 | 11 | -------------------------------------------------------------------------------- /isleenlayout/modules/Vtiger/BasicHeader.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 |
3 | {include file='MenuBar.tpl'|@vtemplate_path} 4 |
5 | {/strip} -------------------------------------------------------------------------------- /isleenlayout/modules/Vtiger/DetailViewFullContents.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 | {include file='DetailViewBlockView.tpl'|@vtemplate_path:$MODULE_NAME RECORD_STRUCTURE=$RECORD_STRUCTURE MODULE_NAME=$MODULE_NAME} 3 | {/strip} 4 | -------------------------------------------------------------------------------- /isleenlayout/modules/Vtiger/DetailViewHeaderTitle.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 | 3 | 4 | 5 |
6 |
7 | {/strip} -------------------------------------------------------------------------------- /isleenlayout/modules/Vtiger/DetailViewPreProcess.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 | {include file="Header.tpl"|vtemplate_path:$MODULE_NAME} 3 | {include file="BasicHeader.tpl"|vtemplate_path:$MODULE_NAME} 4 |
5 |
6 | {include file="DetailViewHeader.tpl"|vtemplate_path:$MODULE_NAME} 7 | {/strip} 8 | -------------------------------------------------------------------------------- /isleenlayout/modules/Vtiger/DetailViewSummaryContents.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 | {include file="DetailViewFullContents.tpl"|vtemplate_path:$MODULE} 3 | {/strip} -------------------------------------------------------------------------------- /isleenlayout/modules/Vtiger/EditView.tpl: -------------------------------------------------------------------------------- 1 |
2 |
3 | {include file="EditViewBlocks.tpl"|@vtemplate_path:$MODULE} 4 | {include file="EditViewActions.tpl"|@vtemplate_path:$MODULE} 5 |
6 |
7 | -------------------------------------------------------------------------------- /isleenlayout/modules/Vtiger/EditViewActions.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 |
3 |
4 |
5 | 6 | {vtranslate('LBL_CANCEL', $MODULE)} 7 |
8 |
9 |
10 | 11 | 12 | {/strip} 13 | -------------------------------------------------------------------------------- /isleenlayout/modules/Vtiger/Index.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 |
3 |
4 |
5 |
6 |

Vtiger Index View

7 |

Generic implementation of the index page view...

8 |

9 | Logout 10 |

11 |
12 |
13 |
14 |
15 | {/strip} -------------------------------------------------------------------------------- /isleenlayout/modules/Vtiger/IndexPostProcess.tpl: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | -------------------------------------------------------------------------------- /isleenlayout/modules/Vtiger/IndexViewPreProcess.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 | {include file="Header.tpl"|vtemplate_path:$MODULE} 3 | {include file="BasicHeader.tpl"|vtemplate_path:$MODULE} 4 | {/strip} -------------------------------------------------------------------------------- /isleenlayout/modules/Vtiger/ListViewPostProcess.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 | 3 | 4 | 5 | 6 | {/strip} 7 | -------------------------------------------------------------------------------- /isleenlayout/modules/Vtiger/ModuleSummaryView.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 | 3 |
4 | {include file='DetailViewBlockView.tpl'|@vtemplate_path:$MODULE_NAME RECORD_STRUCTURE=$SUMMARY_RECORD_STRUCTURE MODULE_NAME=$MODULE_NAME} 5 |
6 | 7 | {/strip} 8 | -------------------------------------------------------------------------------- /isleenlayout/modules/Vtiger/SummaryWidgets.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 | 3 | 4 | {if $RELATED_MODULE && $RELATED_RECORDS} 5 | {assign var=FILENAME value=$RELATED_MODULE|cat:"SummaryWidgetContents.tpl"} 6 | {include file=$FILENAME|vtemplate_path:$MODULE RELATED_RECORDS=$RELATED_RECORDS} 7 | {/if} 8 | {/strip} 9 | -------------------------------------------------------------------------------- /isleenlayout/modules/Vtiger/UI5EmbedView.tpl: -------------------------------------------------------------------------------- 1 | 2 | {include file="Header.tpl"|vtemplate_path:$MODULE} 3 | {include file="BasicHeader.tpl"|vtemplate_path:$MODULE} 4 | 5 | {strip} 6 |
7 |
8 |
9 | 10 |
11 | {/strip} -------------------------------------------------------------------------------- /isleenlayout/modules/Vtiger/dashboards/DashBoardPreProcess.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 | {include file="Header.tpl"|vtemplate_path:$MODULE} 3 | {include file="BasicHeader.tpl"|vtemplate_path:$MODULE} 4 | {include file="dashboards/DashBoardHeader.tpl"|vtemplate_path:$MODULE_NAME DASHBOARDHEADER_TITLE=vtranslate($MODULE, $MODULE)} 5 | {/strip} 6 | -------------------------------------------------------------------------------- /isleenlayout/modules/Vtiger/dashboards/DashBoardWidgetContents.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 | {if count($DATA) gt 0 } 3 | 4 |
5 | {else} 6 | 7 | {vtranslate('LBL_NO')} {vtranslate($MODULE_NAME, $MODULE_NAME)} {vtranslate('LBL_MATCHED_THIS_CRITERIA')} 8 | 9 | {/if} 10 | {/strip} -------------------------------------------------------------------------------- /isleenlayout/modules/Vtiger/dashboards/KeyMetrics.tpl: -------------------------------------------------------------------------------- 1 |
2 |
3 | {include file="dashboards/WidgetHeader.tpl"|@vtemplate_path:$MODULE_NAME} 4 |
5 | 6 |
7 | {include file="dashboards/KeyMetricsContents.tpl"|@vtemplate_path:$MODULE_NAME} 8 |
9 |
-------------------------------------------------------------------------------- /isleenlayout/modules/Vtiger/dashboards/KeyMetricsContents.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 |
3 | {foreach item=KEYMETRIC from=$KEYMETRICS} 4 |
5 | {$KEYMETRIC.count} 6 | {$KEYMETRIC.name} 7 |
8 | {/foreach} 9 |
10 | {/strip} 11 | -------------------------------------------------------------------------------- /isleenlayout/modules/Vtiger/dashboards/MiniList.tpl: -------------------------------------------------------------------------------- 1 |
2 |
3 | {include file="dashboards/WidgetHeader.tpl"|@vtemplate_path:$MODULE_NAME} 4 |
5 | 6 |
7 | {include file="dashboards/MiniListContents.tpl"|@vtemplate_path:$MODULE_NAME} 8 |
9 |
-------------------------------------------------------------------------------- /isleenlayout/modules/Vtiger/dashboards/Notebook.tpl: -------------------------------------------------------------------------------- 1 |
2 |
3 | {include file="dashboards/WidgetHeader.tpl"|@vtemplate_path:$MODULE_NAME} 4 |
5 | 6 |
7 | {include file="dashboards/NotebookContents.tpl"|@vtemplate_path:$MODULE_NAME} 8 |
9 |
-------------------------------------------------------------------------------- /isleenlayout/modules/Vtiger/dashboards/TagCloud.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 |
3 |
4 | {include file="dashboards/WidgetHeader.tpl"|@vtemplate_path:$MODULE_NAME} 5 |
6 | 7 |
8 | {include file="dashboards/TagCloudContents.tpl"|@vtemplate_path:$MODULE_NAME} 9 |
10 |
11 | {/strip} 12 | -------------------------------------------------------------------------------- /isleenlayout/modules/Vtiger/dashboards/TagCloudContents.tpl: -------------------------------------------------------------------------------- 1 | {strip} 2 |
3 | {foreach from=$TAGS[1] item=TAG_ID key=TAG_NAME} 4 | {$TAG_NAME}  5 | {/foreach} 6 |
7 | {/strip} 8 | -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/Calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/Calendar.png -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/DefaultUserIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/DefaultUserIcon.png -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/Dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/Dropbox.png -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/MnyxU.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/MnyxU.gif -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/PriceBooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/PriceBooks.png -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/Products.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/Products.png -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/Services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/Services.png -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/Tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/Tasks.png -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/arrowDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/arrowDown.png -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/arrowRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/arrowRight.png -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/csv.png -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/default_user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/default_user.jpg -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/denied.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/denied.gif -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/downArrowSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/downArrowSmall.png -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/green.png -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/hbar.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/hbar.PNG -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/line.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/line.PNG -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/loading.gif -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/loadingSmall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/loadingSmall.gif -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/loadingdot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/loadingdot.gif -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/pie.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/pie.PNG -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/print.png -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/rightArrowSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/rightArrowSmall.png -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/vbar.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/vbar.PNG -------------------------------------------------------------------------------- /isleenlayout/skins/isleen/images/xlsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/isleenlayout/skins/isleen/images/xlsx.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "DataTables", 3 | "version": "1.9.4", 4 | "main": [ 5 | "./media/js/jquery.dataTables.js", 6 | "./media/css/jquery.dataTables.css", 7 | ], 8 | "dependencies": { 9 | "jquery": "~1.8.0" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/docs/media/images/arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/docs/media/images/arrow.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/docs/media/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/docs/media/images/arrow.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/docs/media/images/extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/docs/media/images/extended.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/de_DE.txt: -------------------------------------------------------------------------------- 1 | { 2 | "sProcessing": "Bitte warten...", 3 | "sLengthMenu": "_MENU_ Einträge anzeigen", 4 | "sZeroRecords": "Keine Einträge vorhanden.", 5 | "sInfo": "_START_ bis _END_ von _TOTAL_ Einträgen", 6 | "sInfoEmpty": "0 bis 0 von 0 Einträgen", 7 | "sInfoFiltered": "(gefiltert von _MAX_ Einträgen)", 8 | "sInfoPostFix": "", 9 | "sSearch": "Suchen", 10 | "sUrl": "", 11 | "oPaginate": { 12 | "sFirst": "Erster", 13 | "sPrevious": "Zurück", 14 | "sNext": "Nächster", 15 | "sLast": "Letzter" 16 | } 17 | } -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/details_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/details_close.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/details_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/details_open.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/editable_ajax.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/jquery.tooltip.css: -------------------------------------------------------------------------------- 1 | #tooltip{ 2 | position: absolute; 3 | display: none; 4 | border: 1px solid #333; 5 | background: #BDCDFF; 6 | padding: 5px 20px; 7 | color: #333; 8 | 9 | border-radius: 5px; 10 | -webkit-border-radius: 5px; 11 | -moz-border-radius: 5px; 12 | } -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/syntax/images/arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/syntax/images/arrow.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/syntax/images/extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/syntax/images/extended.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/themes/ui-lightness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/vv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/vv.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/xx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/examples/examples_support/xx.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/AutoFill/media/docs/media/images/arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/AutoFill/media/docs/media/images/arrow.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/AutoFill/media/docs/media/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/AutoFill/media/docs/media/images/arrow.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/AutoFill/media/docs/media/images/extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/AutoFill/media/docs/media/images/extended.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/AutoFill/media/images/filler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/AutoFill/media/images/filler.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/AutoFill/media/js/AutoFill.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/AutoFill/media/js/AutoFill.min.js.gz -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/ColReorder/media/css/ColReorder.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Namespace DTCR - "DataTables ColReorder" plug-in 3 | */ 4 | 5 | table.DTCR_clonedTable { 6 | background-color: white; 7 | z-index: 202; 8 | } 9 | 10 | div.DTCR_pointer { 11 | width: 1px; 12 | background-color: #0259C4; 13 | z-index: 201; 14 | } 15 | 16 | body.alt div.DTCR_pointer { 17 | margin-top: -15px; 18 | margin-left: -9px; 19 | width: 18px; 20 | background: url('../images/insert.png') no-repeat top left; 21 | } -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/ColReorder/media/docs/media/images/arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/ColReorder/media/docs/media/images/arrow.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/ColReorder/media/docs/media/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/ColReorder/media/docs/media/images/arrow.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/ColReorder/media/docs/media/images/extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/ColReorder/media/docs/media/images/extended.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/ColReorder/media/images/insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/ColReorder/media/images/insert.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/ColReorder/media/js/ColReorder.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/ColReorder/media/js/ColReorder.min.js.gz -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/ColVis/media/docs/media/images/arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/ColVis/media/docs/media/images/arrow.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/ColVis/media/docs/media/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/ColVis/media/docs/media/images/arrow.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/ColVis/media/docs/media/images/extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/ColVis/media/docs/media/images/extended.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/ColVis/media/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/ColVis/media/images/button.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/ColVis/media/js/ColVis.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/ColVis/media/js/ColVis.min.js.gz -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/FixedColumns/docs/media/images/arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/FixedColumns/docs/media/images/arrow.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/FixedColumns/docs/media/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/FixedColumns/docs/media/images/arrow.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/FixedColumns/docs/media/images/extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/FixedColumns/docs/media/images/extended.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/FixedColumns/media/js/FixedColumns.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/FixedColumns/media/js/FixedColumns.min.js.gz -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/FixedHeader/js/FixedHeader.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/FixedHeader/js/FixedHeader.min.js.gz -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/KeyTable/js/KeyTable.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/KeyTable/js/KeyTable.min.js.gz -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/Scroller/media/docs/media/images/arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/Scroller/media/docs/media/images/arrow.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/Scroller/media/docs/media/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/Scroller/media/docs/media/images/arrow.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/Scroller/media/docs/media/images/extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/Scroller/media/docs/media/images/extended.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/Scroller/media/images/loading-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/Scroller/media/images/loading-background.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/Scroller/media/js/dataTables.scroller.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/Scroller/media/js/dataTables.scroller.min.js.gz -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/as3/lib/AlivePDF.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/as3/lib/AlivePDF.swc -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/background.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/collection.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/collection_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/collection_hover.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/copy.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/copy_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/copy_hover.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/csv.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/csv_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/csv_hover.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/pdf.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/pdf_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/pdf_hover.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/print.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/print_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/print_hover.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/psd/collection.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/psd/collection.psd -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/psd/copy document.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/psd/copy document.psd -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/psd/file_types.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/psd/file_types.psd -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/psd/printer.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/psd/printer.psd -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/xls.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/xls_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/images/xls_hover.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/js/TableTools.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/js/TableTools.min.js.gz -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/swf/copy_csv_xls.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/swf/copy_csv_xls.swf -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/swf/copy_csv_xls_pdf.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/extras/TableTools/media/swf/copy_csv_xls_pdf.swf -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/media/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/media/images/Sorting icons.psd -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/media/images/back_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/media/images/back_disabled.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/media/images/back_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/media/images/back_enabled.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/media/images/back_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/media/images/back_enabled_hover.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/media/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/media/images/favicon.ico -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/media/images/forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/media/images/forward_disabled.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/media/images/forward_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/media/images/forward_enabled.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/media/images/forward_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/media/images/forward_enabled_hover.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/media/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/media/images/sort_asc.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/media/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/media/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/media/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/media/images/sort_both.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/media/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/media/images/sort_desc.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/media/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/advanced-datatable/media/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/media/unit_testing/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/media/unit_testing/tests_onhold/1_dom/2512.js: -------------------------------------------------------------------------------- 1 | // DATA_TEMPLATE: 2512 2 | oTest.fnStart( "Check filtering with BR and HTML entity" ); 3 | 4 | 5 | $(document).ready( function () { 6 | $('#example').dataTable(); 7 | 8 | /* Basic checks */ 9 | oTest.fnTest( 10 | "Check filtering", 11 | function () { $('#example').dataTable().fnFilter('testsearchstring'); }, 12 | function () { return $('#example tbody tr').length == 1; } 13 | ); 14 | 15 | 16 | oTest.fnComplete(); 17 | } ); -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/media/unit_testing/tests_onhold/1_dom/2530-2.js: -------------------------------------------------------------------------------- 1 | // DATA_TEMPLATE: dom_data 2 | oTest.fnStart( "User given with is left when no scrolling" ); 3 | 4 | $(document).ready( function () { 5 | $('#example')[0].style.width = "80%"; 6 | $('#example').dataTable(); 7 | 8 | oTest.fnTest( 9 | "Check user width is left", 10 | null, 11 | function () { return $('#example').width() == 640; } 12 | ); 13 | 14 | oTest.fnComplete(); 15 | } ); -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/media/unit_testing/tests_onhold/1_dom/2799.js: -------------------------------------------------------------------------------- 1 | // DATA_TEMPLATE: two_tables 2 | oTest.fnStart( "Initialise two tables" ); 3 | 4 | $(document).ready( function () { 5 | $('table.display').dataTable(); 6 | 7 | oTest.fnTest( 8 | "Check that initialisation was okay", 9 | null, 10 | function () { return true; } 11 | ); 12 | 13 | oTest.fnComplete(); 14 | } ); -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/media/unit_testing/tests_onhold/1_dom/2840-restore-table-width.js: -------------------------------------------------------------------------------- 1 | // DATA_TEMPLATE: dom_data 2 | oTest.fnStart( "2840 - Restore table width on fnDestroy" ); 3 | 4 | $(document).ready( function () { 5 | document.cookie = ""; 6 | $('#example').dataTable( { 7 | "sScrollX": "100%", 8 | "sScrollXInner": "110%" 9 | } ); 10 | $('#example').dataTable().fnDestroy(); 11 | 12 | oTest.fnTest( 13 | "Width after destroy", 14 | null, 15 | function () { return $('#example').width() == "800"; } 16 | ); 17 | 18 | oTest.fnComplete(); 19 | } ); -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/media/unit_testing/tests_onhold/1_dom/bServerSide.js: -------------------------------------------------------------------------------- 1 | // DATA_TEMPLATE: dom_data 2 | oTest.fnStart( "bServerSide" ); 3 | 4 | /* Not interested in server-side processing here other than to check that it is off */ 5 | 6 | $(document).ready( function () { 7 | /* Check the default */ 8 | var oTable = $('#example').dataTable(); 9 | var oSettings = oTable.fnSettings(); 10 | 11 | oTest.fnTest( 12 | "Server side is off by default", 13 | null, 14 | function () { return oSettings.oFeatures.bServerSide == false; } 15 | ); 16 | 17 | oTest.fnComplete(); 18 | } ); -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/media/unit_testing/tests_onhold/1_dom/fnFilter.js: -------------------------------------------------------------------------------- 1 | // DATA_TEMPLATE: dom_data 2 | oTest.fnStart( "fnFilter" ); 3 | 4 | $(document).ready( function () { 5 | /* Check the default */ 6 | var oTable = $('#example').dataTable(); 7 | oTable.fnFilter(1); 8 | 9 | oTest.fnTest( 10 | "Filtering with a non-string input is valid", 11 | null, 12 | function () { return $('#example_info').html() == "Showing 1 to 10 of 32 entries (filtered from 57 total entries)"; } 13 | ); 14 | 15 | oTest.fnComplete(); 16 | } ); -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/media/unit_testing/tests_onhold/1_dom/sAjaxSource.js: -------------------------------------------------------------------------------- 1 | // DATA_TEMPLATE: dom_data 2 | oTest.fnStart( "sAjaxSource" ); 3 | 4 | /* Not interested in ajax source here other than to check it's default */ 5 | 6 | $(document).ready( function () { 7 | /* Check the default */ 8 | var oTable = $('#example').dataTable(); 9 | var oSettings = oTable.fnSettings(); 10 | 11 | oTest.fnTest( 12 | "Server side is off by default", 13 | null, 14 | function () { return oSettings.sAjaxSource == null; } 15 | ); 16 | 17 | oTest.fnComplete(); 18 | } ); -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/media/unit_testing/tests_onhold/2_js/bServerSide.js: -------------------------------------------------------------------------------- 1 | // DATA_TEMPLATE: js_data 2 | oTest.fnStart( "bServerSide" ); 3 | 4 | /* Not interested in server-side processing here other than to check that it is off */ 5 | 6 | $(document).ready( function () { 7 | /* Check the default */ 8 | var oTable = $('#example').dataTable( { 9 | "aaData": gaaData 10 | } ); 11 | var oSettings = oTable.fnSettings(); 12 | 13 | oTest.fnTest( 14 | "Server side is off by default", 15 | null, 16 | function () { return oSettings.oFeatures.bServerSide == false; } 17 | ); 18 | 19 | oTest.fnComplete(); 20 | } ); -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/advanced-datatable/media/unit_testing/tests_onhold/2_js/sAjaxSource.js: -------------------------------------------------------------------------------- 1 | // DATA_TEMPLATE: js_data 2 | oTest.fnStart( "sAjaxSource" ); 3 | 4 | /* Not interested in ajax source here other than to check it's default */ 5 | 6 | $(document).ready( function () { 7 | /* Check the default */ 8 | var oTable = $('#example').dataTable( { 9 | "aaData": gaaData 10 | } ); 11 | var oSettings = oTable.fnSettings(); 12 | 13 | oTest.fnTest( 14 | "Server side is off by default", 15 | null, 16 | function () { return oSettings.sAjaxSource == null; } 17 | ); 18 | 19 | oTest.fnComplete(); 20 | } ); -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/bootstrap-colorpicker/img/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/bootstrap-colorpicker/img/alpha.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/bootstrap-colorpicker/img/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/bootstrap-colorpicker/img/hue.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/bootstrap-colorpicker/img/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/bootstrap-colorpicker/img/saturation.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/bootstrap-datetimepicker/.travis.yml: -------------------------------------------------------------------------------- 1 | before_script: 2 | - cd ./tests 3 | - echo "new Date().toString();" | phantomjs 4 | script: phantomjs run-qunit.js tests.html 5 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/bootstrap-datetimepicker/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap-datetimepicker", 3 | "version": "1.0.0", 4 | "main": ["js/bootstrap-datetimepicker.min.js", "css/datetimepicker.css"] 5 | } 6 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/bootstrap-datetimepicker/sample/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/bootstrap-datetimepicker/sample/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/bootstrap-datetimepicker/sample/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/bootstrap-datetimepicker/sample/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/bootstrap-datetimepicker/screenshot/standard_day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/bootstrap-datetimepicker/screenshot/standard_day.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/bootstrap-datetimepicker/screenshot/standard_day_meridian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/bootstrap-datetimepicker/screenshot/standard_day_meridian.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/bootstrap-datetimepicker/screenshot/standard_decade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/bootstrap-datetimepicker/screenshot/standard_decade.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/bootstrap-datetimepicker/screenshot/standard_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/bootstrap-datetimepicker/screenshot/standard_full.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/bootstrap-datetimepicker/screenshot/standard_hour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/bootstrap-datetimepicker/screenshot/standard_hour.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/bootstrap-datetimepicker/screenshot/standard_hour_meridian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/bootstrap-datetimepicker/screenshot/standard_hour_meridian.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/bootstrap-datetimepicker/screenshot/standard_month.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/bootstrap-datetimepicker/screenshot/standard_month.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/bootstrap-datetimepicker/screenshot/standard_year.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/bootstrap-datetimepicker/screenshot/standard_year.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/bootstrap-datetimepicker/tests/_coverage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 20 | 21 | 22 | COLORIZED_LINE_HTML 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/bootstrap-switch/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/bootstrap-switch/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap-switch", 3 | "description" : "Unofficial bootstrap switch", 4 | "version": "1.8.0", 5 | "main": "static/js/bootstrap-switch.js", 6 | "ignore": [ 7 | "examples" 8 | ], 9 | "dependencies": { 10 | "jquery": "~1.9.0" 11 | } 12 | } 13 | 14 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/bootstrap-switch/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "bootstrap-switch", 3 | "description" : "Unofficial bootstrap switch", 4 | "version" : "1.8.0", 5 | "main" : "static/js/bootstrap-switch.js", 6 | "ignore": [ 7 | "examples" 8 | ], 9 | "dependencies": { 10 | "jquery": "~1.9.0" 11 | }, 12 | "scripts": [ 13 | "static/js/bootstrap-switch.js" 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/bootstrap-timepicker/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | _site 3 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/bootstrap-timepicker/README.md: -------------------------------------------------------------------------------- 1 | Timepicker for Twitter Bootstrap 2.x 2 | ------------------------------------ 3 | 4 | A simple timepicker component for Twitter Bootstrap. 5 | 6 | Documentation 7 | ============= 8 | 9 | Read the documentation. 10 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/chart-master/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/chart-master/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Chart.js", 3 | "version": "0.2.0", 4 | "description": "Simple HTML5 Charts using the canvas element", 5 | "keywords": ["charts"], 6 | "homepage": "https://github.com/nnnick/Chart.js", 7 | "author": "nnnick", 8 | "main": ["Chart.min.js"], 9 | "dependencies": { 10 | } 11 | } -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/chart-master/site/assets/6charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/chart-master/site/assets/6charts.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/chart-master/site/assets/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/chart-master/site/assets/html.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/chart-master/site/assets/simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/chart-master/site/assets/simple.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/ckeditor/plugins/fakeobjects/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/ckeditor/plugins/fakeobjects/images/spacer.gif -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/ckeditor/samples/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/ckeditor/samples/assets/inlineall/logo.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/ckeditor/samples/assets/sample.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Required by tests (dom/document.html). 3 | */ 4 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/ckeditor/samples/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/ckeditor/samples/assets/sample.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/ckeditor/skins/moono/images/mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/ckeditor/skins/moono/images/mini.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/data-tables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/data-tables/images/sort_asc.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/data-tables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/data-tables/images/sort_both.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/data-tables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/data-tables/images/sort_desc.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/dropzone/images/spritemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/dropzone/images/spritemap.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/dropzone/images/spritemap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/dropzone/images/spritemap@2x.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/dropzone/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/dropzone/upload.php -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fancybox/.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Denote all files that are truly binary and should not be modified. 5 | *.png binary 6 | *.jpg binary 7 | *.gif binary -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fancybox/demo/1_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fancybox/demo/1_b.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fancybox/demo/1_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fancybox/demo/1_s.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fancybox/demo/2_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fancybox/demo/2_b.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fancybox/demo/2_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fancybox/demo/2_s.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fancybox/demo/3_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fancybox/demo/3_b.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fancybox/demo/3_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fancybox/demo/3_s.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fancybox/demo/4_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fancybox/demo/4_b.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fancybox/demo/4_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fancybox/demo/4_s.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fancybox/demo/5_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fancybox/demo/5_b.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fancybox/demo/5_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fancybox/demo/5_s.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fancybox/source/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fancybox/source/blank.gif -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fancybox/source/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fancybox/source/fancybox_loading.gif -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fancybox/source/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fancybox/source/fancybox_overlay.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fancybox/source/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fancybox/source/fancybox_sprite.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fancybox/source/helpers/fancybox_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fancybox/source/helpers/fancybox_buttons.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/file-uploader/css/demo-ie8.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 3 | * jQuery File Upload Demo CSS Fixes for IE<9 1.0.0 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 | 13 | .navigation { 14 | list-style: none; 15 | padding: 0; 16 | margin: 1em 0; 17 | } 18 | .navigation li { 19 | display: inline; 20 | margin-right: 10px; 21 | } 22 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/file-uploader/css/jquery.fileupload-noscript.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 3 | * jQuery File Upload Plugin NoScript CSS 1.2.0 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 | 13 | .fileinput-button input { 14 | position: static; 15 | opacity: 1; 16 | filter: none; 17 | font-size: inherit; 18 | direction: inherit; 19 | } 20 | .fileinput-button span { 21 | display: none; 22 | } 23 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/file-uploader/css/jquery.fileupload-ui-noscript.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 3 | * jQuery File Upload UI Plugin NoScript CSS 8.8.5 4 | * https://github.com/blueimp/jQuery-File-Upload 5 | * 6 | * Copyright 2012, Sebastian Tschan 7 | * https://blueimp.net 8 | * 9 | * Licensed under the MIT license: 10 | * http://www.opensource.org/licenses/MIT 11 | */ 12 | 13 | .fileinput-button i, 14 | .fileupload-buttonbar .delete, 15 | .fileupload-buttonbar .toggle { 16 | display: none; 17 | } 18 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/file-uploader/css/style.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 3 | * jQuery File Upload Plugin CSS Example 8.8.2 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 | 13 | body { 14 | padding-top: 60px; 15 | } 16 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/file-uploader/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/file-uploader/img/loading.gif -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/file-uploader/img/progressbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/file-uploader/img/progressbar.gif -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/file-uploader/server/gae-go/app.yaml: -------------------------------------------------------------------------------- 1 | application: jquery-file-upload 2 | version: 2 3 | runtime: go 4 | api_version: go1 5 | 6 | handlers: 7 | - url: /(favicon\.ico|robots\.txt) 8 | static_files: static/\1 9 | upload: static/(.*) 10 | expiration: '1d' 11 | - url: /.* 12 | script: _go_app 13 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/file-uploader/server/gae-go/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/file-uploader/server/gae-go/static/favicon.ico -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/file-uploader/server/gae-go/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/file-uploader/server/gae-python/app.yaml: -------------------------------------------------------------------------------- 1 | application: jquery-file-upload 2 | version: 1 3 | runtime: python27 4 | api_version: 1 5 | threadsafe: true 6 | 7 | builtins: 8 | - deferred: on 9 | 10 | handlers: 11 | - url: /(favicon\.ico|robots\.txt) 12 | static_files: static/\1 13 | upload: static/(.*) 14 | expiration: '1d' 15 | - url: /.* 16 | script: main.app 17 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/file-uploader/server/gae-python/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/file-uploader/server/gae-python/static/favicon.ico -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/file-uploader/server/gae-python/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/file-uploader/server/node/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/file-uploader/server/node/public/files/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/file-uploader/server/node/tmp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/file-uploader/server/node/tmp/.gitignore -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/file-uploader/server/php/files/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !.htaccess 4 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/file-uploader/server/php/index.php: -------------------------------------------------------------------------------- 1 | li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: -@fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font-family: FontAwesome; 7 | font-style: normal; 8 | font-weight: normal; 9 | line-height: 1; 10 | -webkit-font-smoothing: antialiased; 11 | -moz-osx-font-smoothing: grayscale; 12 | } 13 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "spinning"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fuelux/img/tree-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fuelux/img/tree-icons.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-bg_flat_15_cd0a0a_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-bg_flat_15_cd0a0a_40x100.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-bg_glass_100_e4f1fb_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-bg_glass_100_e4f1fb_1x400.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-bg_glass_50_3baae3_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-bg_glass_50_3baae3_1x400.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-bg_glass_80_d7ebf9_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-bg_glass_80_d7ebf9_1x400.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-bg_highlight-hard_70_000000_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-bg_highlight-hard_70_000000_1x100.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-bg_highlight-soft_100_deedf7_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-bg_highlight-soft_100_deedf7_1x100.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-bg_highlight-soft_25_ffef8f_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-bg_highlight-soft_25_ffef8f_1x100.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-icons_2694e8_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-icons_2694e8_256x240.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-icons_3d80b3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-icons_3d80b3_256x240.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-icons_72a7cf_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-icons_72a7cf_256x240.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/fullcalendar/demos/cupertino/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/fullcalendar/demos/json-events.php: -------------------------------------------------------------------------------- 1 | 111, 10 | 'title' => "Event1", 11 | 'start' => "$year-$month-10", 12 | 'url' => "http://yahoo.com/" 13 | ), 14 | 15 | array( 16 | 'id' => 222, 17 | 'title' => "Event2", 18 | 'start' => "$year-$month-20", 19 | 'end' => "$year-$month-22", 20 | 'url' => "http://yahoo.com/" 21 | ) 22 | 23 | )); 24 | 25 | ?> 26 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/gritter/images/gritter-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/gritter/images/gritter-blue.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/gritter/images/gritter-brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/gritter/images/gritter-brown.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/gritter/images/gritter-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/gritter/images/gritter-light.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/gritter/images/gritter-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/gritter/images/gritter-long.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/gritter/images/gritter-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/gritter/images/gritter-purple.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/gritter/images/gritter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/gritter/images/gritter.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/gritter/images/ie-spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/gritter/images/ie-spacer.gif -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/gritter/images_original/gritter-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/gritter/images_original/gritter-light.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/gritter/images_original/gritter-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/gritter/images_original/gritter-long.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/gritter/images_original/gritter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/gritter/images_original/gritter.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/gritter/images_original/ie-spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/gritter/images_original/ie-spacer.gif -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/gritter/images_original/trees.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/gritter/images_original/trees.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jcrop/crop-demo.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jcrop/css/Jcrop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jcrop/css/Jcrop.gif -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jcrop/demos/demo_files/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jcrop/demos/demo_files/image1.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jcrop/demos/demo_files/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jcrop/demos/demo_files/image2.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jcrop/demos/demo_files/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jcrop/demos/demo_files/image3.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jcrop/demos/demo_files/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jcrop/demos/demo_files/image4.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jcrop/demos/demo_files/image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jcrop/demos/demo_files/image5.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jcrop/demos/demo_files/pool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jcrop/demos/demo_files/pool.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jcrop/demos/demo_files/sago.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jcrop/demos/demo_files/sago.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jcrop/demos/demo_files/sagomod.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jcrop/demos/demo_files/sagomod.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jcrop/demos/demo_files/sagomod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jcrop/demos/demo_files/sagomod.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-easy-pie-chart/Makefile: -------------------------------------------------------------------------------- 1 | dist: all 2 | @echo Done 3 | 4 | all: 5 | @echo Compiling coffee script 6 | coffee -c *.coffee 7 | 8 | watch: 9 | @echo Watch coffee script files 10 | coffee -w *.coffee 11 | 12 | .PHONY: dist all watch -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-easy-pie-chart/img/easy-pie-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-easy-pie-chart/img/easy-pie-chart.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-easy-pie-chart/jquery.easy-pie-chart.css: -------------------------------------------------------------------------------- 1 | .easyPieChart { 2 | position: relative; 3 | text-align: center; 4 | } 5 | 6 | .easyPieChart canvas { 7 | position: absolute; 8 | top: 0; 9 | left: 0; 10 | } 11 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-file-upload/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | node_modules 4 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-file-upload/css/style.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 3 | * jQuery File Upload Plugin CSS Example 1.0.1 4 | * https://github.com/blueimp/jQuery-File-Upload 5 | * 6 | * Copyright 2012, Sebastian Tschan 7 | * https://blueimp.net 8 | * 9 | * Licensed under the MIT license: 10 | * http://www.opensource.org/licenses/MIT 11 | */ 12 | 13 | body{ 14 | padding-top: 60px; 15 | } 16 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-file-upload/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-file-upload/img/loading.gif -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-file-upload/img/progressbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-file-upload/img/progressbar.gif -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-file-upload/server/gae-go/app.yaml: -------------------------------------------------------------------------------- 1 | application: jquery-file-upload 2 | version: 2 3 | runtime: go 4 | api_version: go1 5 | 6 | handlers: 7 | - url: /(favicon\.ico|robots\.txt) 8 | static_files: static/\1 9 | upload: static/(.*) 10 | expiration: '1d' 11 | - url: /.* 12 | script: _go_app 13 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-file-upload/server/gae-go/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-file-upload/server/gae-go/static/favicon.ico -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-file-upload/server/gae-go/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-file-upload/server/gae-python/app.yaml: -------------------------------------------------------------------------------- 1 | application: jquery-file-upload 2 | version: 1 3 | runtime: python27 4 | api_version: 1 5 | threadsafe: true 6 | 7 | builtins: 8 | - deferred: on 9 | 10 | handlers: 11 | - url: /(favicon\.ico|robots\.txt) 12 | static_files: static/\1 13 | upload: static/(.*) 14 | expiration: '1d' 15 | - url: /.* 16 | script: main.app 17 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-file-upload/server/gae-python/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-file-upload/server/gae-python/static/favicon.ico -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-file-upload/server/gae-python/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-file-upload/server/node/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-file-upload/server/node/public/files/thumbnail/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-file-upload/server/node/public/files/thumbnail/.gitignore -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-file-upload/server/node/tmp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-file-upload/server/node/tmp/.gitignore -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-file-upload/server/php/files/.htaccess: -------------------------------------------------------------------------------- 1 | # The following directives force the Content-Type 2 | # "application/octet-stream" for all files except images. 3 | # This prevents executing any uploaded scripts 4 | # and forces a download dialog for non-image files: 5 | ForceType application/octet-stream 6 | 7 | ForceType none 8 | 9 | 10 | # Uncomment the following lines to prevent unauthorized download of files: 11 | #AuthName "Authorization required" 12 | #AuthType Basic 13 | #require valid-user 14 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-file-upload/server/php/index.php: -------------------------------------------------------------------------------- 1 | 5 | 6 | Everyone is permitted to copy and distribute verbatim or modified 7 | copies of this license document, and changing it is allowed as long 8 | as the name is changed. 9 | 10 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 11 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 12 | 13 | 0. You just DO WHAT THE FUCK YOU WANT TO. 14 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-multi-select/README.markdown: -------------------------------------------------------------------------------- 1 | # jquery.multi-select.js 2 | 3 | Usage and Demos [http://loudev.com](http://loudev.com "jquery.multi-select.js") 4 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-multi-select/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "multiselect", 3 | "version": "0.9.8", 4 | "main": ["css/multi-select.css", "img/switch.png", "js/jquery.multi-select.js"], 5 | "dependencies" : { 6 | "jquery" ">= 1.7.1" 7 | } 8 | } -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-multi-select/img/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-multi-select/img/switch.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-multi-select/img/switch_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-multi-select/img/switch_original.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-tags-input/test/fake_plaintext_endpoint.html: -------------------------------------------------------------------------------- 1 | inky 2 | pinky 3 | blinky 4 | clyde 5 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/animated-overlay.gif -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/jquery-ui/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/assets/jquery-ui/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/morris.js-0.4.3/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/morris.js-0.4.3/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | before_script: 5 | - "npm install -g grunt" 6 | - "npm install" 7 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/morris.js-0.4.3/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "morris.js", 3 | "version": "0.4.3", 4 | "main": ["./morris.js", "./morris.css"], 5 | "dependencies": { 6 | "jquery": ">= 1.7.2", 7 | "raphael": ">= 2.0" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/morris.js-0.4.3/examples/lib/example.css: -------------------------------------------------------------------------------- 1 | body { 2 | width: 800px; 3 | margin: 0 auto; 4 | } 5 | #graph { 6 | width: 800px; 7 | height: 250px; 8 | margin: 20px auto 0 auto; 9 | } 10 | pre { 11 | height: 250px; 12 | overflow: auto; 13 | } 14 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/morris.js-0.4.3/examples/lib/example.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | eval($('#code').text()); 3 | prettyPrint(); 4 | }); -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/morris.js-0.4.3/spec/lib/grid/y_label_format_spec.coffee: -------------------------------------------------------------------------------- 1 | describe 'Morris.Grid#yLabelFormat', -> 2 | 3 | it 'should use custom formatter for y labels', -> 4 | formatter = (label) -> 5 | flabel = parseFloat(label) / 1000 6 | "#{flabel.toFixed(1)}k" 7 | line = Morris.Line 8 | element: 'graph' 9 | data: [{x: 1, y: 1500}, {x: 2, y: 2500}] 10 | xkey: 'x' 11 | ykeys: ['y'] 12 | labels: ['dontcare'] 13 | preUnits: "$" 14 | yLabelFormat: formatter 15 | line.yLabelFormat(1500).should.equal "1.5k" 16 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/assets/morris.js-0.4.3/spec/support/placeholder.coffee: -------------------------------------------------------------------------------- 1 | beforeEach -> 2 | placeholder = $('
') 3 | $('#test').append(placeholder) 4 | 5 | afterEach -> 6 | $('#test').empty() 7 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/css/images/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/css/images/black.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/css/images/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/css/images/green.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/css/images/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/css/images/yellow.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/css/invoice-print.css: -------------------------------------------------------------------------------- 1 | #sidebar, .header, .site-footer { 2 | display: none ; 3 | } 4 | .header , .site-footer{ 5 | min-height: 0; 6 | } 7 | 8 | #main-content { 9 | margin-left: 0; 10 | width: 100%; 11 | margin-top: -50px; 12 | } -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/css/navbar-fixed-top.css: -------------------------------------------------------------------------------- 1 | body { 2 | min-height: 2000px; 3 | padding-top: 70px; 4 | } 5 | -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/404_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/404_icon.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/500_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/500_icon.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/arrow-up.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/avatar-mini.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/avatar-mini.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/avatar-mini2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/avatar-mini2.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/avatar-mini3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/avatar-mini3.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/avatar-mini4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/avatar-mini4.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/avatar1.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/avatar1_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/avatar1_small.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/chart-texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/chart-texture.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/chat-attach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/chat-attach.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/chat-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/chat-avatar.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/chat-avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/chat-avatar2.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/chat-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/chat-search.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/checkbox/check-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/checkbox/check-off.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/checkbox/check-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/checkbox/check-on.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/checkbox/radio-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/checkbox/radio-off.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/checkbox/radio-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/checkbox/radio-on.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/customSelect-arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/customSelect-arrow.gif -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/email-img/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/email-img/banner.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/email-img/icon-cal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/email-img/icon-cal.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/email-img/icon-tel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/email-img/icon-tel.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/email-img/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/email-img/image1.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/email-img/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/email-img/image2.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/email-img/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/email-img/image3.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/email-img/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/email-img/image4.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/email-img/main-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/email-img/main-img.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/email-img/social-facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/email-img/social-facebook.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/email-img/social-google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/email-img/social-google.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/email-img/social-linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/email-img/social-linkedin.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/email-img/social-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/email-img/social-twitter.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/email-img/social-youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/email-img/social-youtube.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/email-img/vector-lab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/email-img/vector-lab.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/fb-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/fb-img.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/file-search/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/file-search/ai.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/file-search/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/file-search/doc.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/file-search/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/file-search/email.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/file-search/eps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/file-search/eps.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/file-search/jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/file-search/jpg.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/file-search/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/file-search/pdf.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/file-search/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/file-search/ppt.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/file-search/psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/file-search/psd.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/file-search/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/file-search/rss.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/file-search/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/file-search/xls.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/file-search/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/file-search/zip.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/flags/de.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/flags/es.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/flags/fr.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/flags/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/flags/ru.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/flags/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/flags/us.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/follower-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/follower-avatar.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/gallery/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/gallery/1.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/gallery/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/gallery/2.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/gallery/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/gallery/3.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/gallery/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/gallery/4.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/gallery/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/gallery/5.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/gallery/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/gallery/6.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/gallery/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/gallery/7.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/input-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/input-spinner.gif -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/left-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/left-arrow.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/lock-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/lock-bg.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/mail-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/mail-avatar.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/mask-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/mask-square.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/mask.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/nav-expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/nav-expand.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/pro-ac-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/pro-ac-1.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/pro-ac-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/pro-ac-2.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/product-list/pro-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/product-list/pro-1.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/product-list/pro-thumb-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/product-list/pro-thumb-1.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/product-list/pro-thumb-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/product-list/pro-thumb-2.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/product-list/pro-thumb-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/product-list/pro-thumb-3.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/product-list/pro-thumb-big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/product-list/pro-thumb-big.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/product-list/pro1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/product-list/pro1.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/product-list/pro2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/product-list/pro2.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/product-list/pro3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/product-list/pro3.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/product1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/product1.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/product2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/product2.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/product3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/product3.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/profile-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/profile-avatar.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/right-arrow.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/ring.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/ring.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/search-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/search-icon.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/sm-img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/sm-img-1.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/sm-img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/sm-img-2.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/sm-img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/sm-img-3.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/tree-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/tree-icons.png -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/img/vector-lab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/bootstrap/img/vector-lab.jpg -------------------------------------------------------------------------------- /libraries/isleen/bootstrap/js/tasks.js: -------------------------------------------------------------------------------- 1 | var TaskList = function () { 2 | 3 | return { 4 | 5 | initTaskWidget: function () { 6 | $('input.list-child').change(function() { 7 | if ($(this).is(':checked')) { 8 | $(this).parents('li').addClass("task-done"); 9 | } else { 10 | $(this).parents('li').removeClass("task-done"); 11 | } 12 | }); 13 | } 14 | 15 | }; 16 | 17 | }(); -------------------------------------------------------------------------------- /libraries/isleen/img/avatar-mini.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/img/avatar-mini.jpg -------------------------------------------------------------------------------- /libraries/isleen/img/avatar-mini2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/img/avatar-mini2.jpg -------------------------------------------------------------------------------- /libraries/isleen/img/avatar-mini3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/img/avatar-mini3.jpg -------------------------------------------------------------------------------- /libraries/isleen/img/avatar-mini4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/img/avatar-mini4.jpg -------------------------------------------------------------------------------- /libraries/isleen/img/avatar1_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/img/avatar1_small.jpg -------------------------------------------------------------------------------- /libraries/isleen/img/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/img/black.png -------------------------------------------------------------------------------- /libraries/isleen/img/chat-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/img/chat-avatar.jpg -------------------------------------------------------------------------------- /libraries/isleen/img/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/img/green.png -------------------------------------------------------------------------------- /libraries/isleen/img/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/img/yellow.png -------------------------------------------------------------------------------- /libraries/isleen/jquery/ui/1.9.1/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isleensolutions/vtigerTemplate/6c37ad69c6df75aa243a5a8a3848ec6fea039339/libraries/isleen/jquery/ui/1.9.1/jquery-ui.js --------------------------------------------------------------------------------