├── .htaccess ├── README.md ├── asset └── app.php ├── config.php ├── controllers └── SiteController.php ├── demo.sql ├── error.log ├── framework.php ├── images ├── acl.png ├── acl_16.png ├── acl_64.png ├── add.png ├── apply.png ├── cross.png ├── group.png ├── list_metro.png ├── loading.gif ├── menu.png ├── please_wait.gif └── view.png ├── index.php ├── plugins ├── bootstrapvalidator │ ├── dist │ │ ├── css │ │ │ ├── bootstrapValidator.css │ │ │ └── bootstrapValidator.min.css │ │ └── js │ │ │ ├── bootstrapValidator.js │ │ │ ├── bootstrapValidator.min.js │ │ │ └── language │ │ │ ├── ar_MA.js │ │ │ ├── be_FR.js │ │ │ ├── be_NL.js │ │ │ ├── bg_BG.js │ │ │ ├── cs_CZ.js │ │ │ ├── da_DK.js │ │ │ ├── de_DE.js │ │ │ ├── en_US.js │ │ │ ├── es_CL.js │ │ │ ├── es_ES.js │ │ │ ├── fa_IR.js │ │ │ ├── fr_FR.js │ │ │ ├── gr_EL.js │ │ │ ├── he_IL.js │ │ │ ├── hu_HU.js │ │ │ ├── id_ID.js │ │ │ ├── it_IT.js │ │ │ ├── ja_JP.js │ │ │ ├── nl_NL.js │ │ │ ├── no_NO.js │ │ │ ├── pl_PL.js │ │ │ ├── pt_BR.js │ │ │ ├── pt_PT.js │ │ │ ├── ro_RO.js │ │ │ ├── ru_RU.js │ │ │ ├── sq_AL.js │ │ │ ├── sr_RS.js │ │ │ ├── sv_SE.js │ │ │ ├── th_TH.js │ │ │ ├── tr_TR.js │ │ │ ├── ua_UA.js │ │ │ ├── vi_VN.js │ │ │ ├── zh_CN.js │ │ │ └── zh_TW.js │ └── src │ │ ├── css │ │ └── bootstrapValidator.css │ │ └── js │ │ ├── bootstrapValidator.js │ │ ├── language │ │ ├── ar_MA.js │ │ ├── be_FR.js │ │ ├── be_NL.js │ │ ├── bg_BG.js │ │ ├── cs_CZ.js │ │ ├── da_DK.js │ │ ├── de_DE.js │ │ ├── en_US.js │ │ ├── es_CL.js │ │ ├── es_ES.js │ │ ├── fa_IR.js │ │ ├── fr_FR.js │ │ ├── gr_EL.js │ │ ├── he_IL.js │ │ ├── hu_HU.js │ │ ├── id_ID.js │ │ ├── it_IT.js │ │ ├── ja_JP.js │ │ ├── nl_NL.js │ │ ├── no_NO.js │ │ ├── pl_PL.js │ │ ├── pt_BR.js │ │ ├── pt_PT.js │ │ ├── ro_RO.js │ │ ├── ru_RU.js │ │ ├── sq_AL.js │ │ ├── sr_RS.js │ │ ├── sv_SE.js │ │ ├── th_TH.js │ │ ├── tr_TR.js │ │ ├── ua_UA.js │ │ ├── vi_VN.js │ │ ├── zh_CN.js │ │ └── zh_TW.js │ │ └── validator │ │ ├── base64.js │ │ ├── between.js │ │ ├── blank.js │ │ ├── callback.js │ │ ├── choice.js │ │ ├── color.js │ │ ├── creditCard.js │ │ ├── cusip.js │ │ ├── cvv.js │ │ ├── date.js │ │ ├── different.js │ │ ├── digits.js │ │ ├── ean.js │ │ ├── emailAddress.js │ │ ├── file.js │ │ ├── greaterThan.js │ │ ├── grid.js │ │ ├── hex.js │ │ ├── hexColor.js │ │ ├── iban.js │ │ ├── id.js │ │ ├── identical.js │ │ ├── imei.js │ │ ├── imo.js │ │ ├── integer.js │ │ ├── ip.js │ │ ├── isbn.js │ │ ├── isin.js │ │ ├── ismn.js │ │ ├── issn.js │ │ ├── lessThan.js │ │ ├── mac.js │ │ ├── meid.js │ │ ├── notEmpty.js │ │ ├── numeric.js │ │ ├── phone.js │ │ ├── regexp.js │ │ ├── remote.js │ │ ├── rtn.js │ │ ├── sedol.js │ │ ├── siren.js │ │ ├── siret.js │ │ ├── step.js │ │ ├── stringCase.js │ │ ├── stringLength.js │ │ ├── uri.js │ │ ├── uuid.js │ │ ├── vat.js │ │ ├── vin.js │ │ └── zipCode.js ├── index.php ├── jform.1.0.0 │ ├── icons.eot │ ├── icons.svg │ ├── icons.ttf │ ├── icons.woff │ ├── jform.eot │ ├── jform.svg │ ├── jform.ttf │ ├── jform.woff │ ├── jquery.jform.css │ └── jquery.jform.js ├── jquery-ui-1.10.4 │ ├── css │ │ └── facebook │ │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_0_333333_40x100.png │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ │ ├── ui-bg_flat_75_3b5998_40x100.png │ │ │ ├── ui-bg_flat_75_d4dae8_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_flat_95_ffebe8_40x100.png │ │ │ ├── ui-bg_glass_55_fff9d7_1x400.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── jquery-ui-1.10.4.custom.css │ │ │ └── jquery-ui.min.css │ ├── development-bundle │ │ ├── AUTHORS.txt │ │ ├── Gruntfile.js │ │ ├── MIT-LICENSE.txt │ │ ├── README.md │ │ ├── demos │ │ │ ├── accordion │ │ │ │ ├── collapsible.html │ │ │ │ ├── custom-icons.html │ │ │ │ ├── default.html │ │ │ │ ├── fillspace.html │ │ │ │ ├── hoverintent.html │ │ │ │ ├── index.html │ │ │ │ ├── no-auto-height.html │ │ │ │ └── sortable.html │ │ │ ├── addClass │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── animate │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── autocomplete │ │ │ │ ├── categories.html │ │ │ │ ├── combobox.html │ │ │ │ ├── custom-data.html │ │ │ │ ├── default.html │ │ │ │ ├── folding.html │ │ │ │ ├── images │ │ │ │ │ ├── jquery_32x32.png │ │ │ │ │ ├── jqueryui_32x32.png │ │ │ │ │ ├── sizzlejs_32x32.png │ │ │ │ │ ├── transparent_1x1.png │ │ │ │ │ └── ui-anim_basic_16x16.gif │ │ │ │ ├── index.html │ │ │ │ ├── london.xml │ │ │ │ ├── maxheight.html │ │ │ │ ├── multiple-remote.html │ │ │ │ ├── multiple.html │ │ │ │ ├── remote-jsonp.html │ │ │ │ ├── remote-with-cache.html │ │ │ │ ├── remote.html │ │ │ │ ├── search.php │ │ │ │ └── xml.html │ │ │ ├── button │ │ │ │ ├── checkbox.html │ │ │ │ ├── default.html │ │ │ │ ├── icons.html │ │ │ │ ├── index.html │ │ │ │ ├── radio.html │ │ │ │ ├── splitbutton.html │ │ │ │ └── toolbar.html │ │ │ ├── datepicker │ │ │ │ ├── alt-field.html │ │ │ │ ├── animation.html │ │ │ │ ├── buttonbar.html │ │ │ │ ├── date-formats.html │ │ │ │ ├── date-range.html │ │ │ │ ├── default.html │ │ │ │ ├── dropdown-month-year.html │ │ │ │ ├── icon-trigger.html │ │ │ │ ├── images │ │ │ │ │ └── calendar.gif │ │ │ │ ├── index.html │ │ │ │ ├── inline.html │ │ │ │ ├── jquery.ui.datepicker-ar.js │ │ │ │ ├── jquery.ui.datepicker-fr.js │ │ │ │ ├── jquery.ui.datepicker-he.js │ │ │ │ ├── jquery.ui.datepicker-zh-TW.js │ │ │ │ ├── localization.html │ │ │ │ ├── min-max.html │ │ │ │ ├── multiple-calendars.html │ │ │ │ ├── other-months.html │ │ │ │ └── show-week.html │ │ │ ├── demos.css │ │ │ ├── dialog │ │ │ │ ├── animated.html │ │ │ │ ├── default.html │ │ │ │ ├── index.html │ │ │ │ ├── modal-confirmation.html │ │ │ │ ├── modal-form.html │ │ │ │ ├── modal-message.html │ │ │ │ └── modal.html │ │ │ ├── draggable │ │ │ │ ├── constrain-movement.html │ │ │ │ ├── cursor-style.html │ │ │ │ ├── default.html │ │ │ │ ├── delay-start.html │ │ │ │ ├── events.html │ │ │ │ ├── handle.html │ │ │ │ ├── index.html │ │ │ │ ├── revert.html │ │ │ │ ├── scroll.html │ │ │ │ ├── snap-to.html │ │ │ │ ├── sortable.html │ │ │ │ └── visual-feedback.html │ │ │ ├── droppable │ │ │ │ ├── accepted-elements.html │ │ │ │ ├── default.html │ │ │ │ ├── images │ │ │ │ │ ├── high_tatras.jpg │ │ │ │ │ ├── high_tatras2.jpg │ │ │ │ │ ├── high_tatras2_min.jpg │ │ │ │ │ ├── high_tatras3.jpg │ │ │ │ │ ├── high_tatras3_min.jpg │ │ │ │ │ ├── high_tatras4.jpg │ │ │ │ │ ├── high_tatras4_min.jpg │ │ │ │ │ └── high_tatras_min.jpg │ │ │ │ ├── index.html │ │ │ │ ├── photo-manager.html │ │ │ │ ├── propagation.html │ │ │ │ ├── revert.html │ │ │ │ ├── shopping-cart.html │ │ │ │ └── visual-feedback.html │ │ │ ├── effect │ │ │ │ ├── default.html │ │ │ │ ├── easing.html │ │ │ │ └── index.html │ │ │ ├── hide │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── images │ │ │ │ ├── calendar.gif │ │ │ │ ├── demo-config-on-tile.gif │ │ │ │ ├── demo-config-on.gif │ │ │ │ ├── demo-spindown-closed.gif │ │ │ │ ├── demo-spindown-open.gif │ │ │ │ ├── icon-docs-info.gif │ │ │ │ └── pbar-ani.gif │ │ │ ├── index.html │ │ │ ├── menu │ │ │ │ ├── default.html │ │ │ │ ├── icons.html │ │ │ │ └── index.html │ │ │ ├── position │ │ │ │ ├── cycler.html │ │ │ │ ├── default.html │ │ │ │ ├── images │ │ │ │ │ ├── earth.jpg │ │ │ │ │ ├── flight.jpg │ │ │ │ │ └── rocket.jpg │ │ │ │ └── index.html │ │ │ ├── progressbar │ │ │ │ ├── default.html │ │ │ │ ├── images │ │ │ │ │ └── pbar-ani.gif │ │ │ │ ├── indeterminate.html │ │ │ │ ├── index.html │ │ │ │ └── label.html │ │ │ ├── removeClass │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── resizable │ │ │ │ ├── animate.html │ │ │ │ ├── aspect-ratio.html │ │ │ │ ├── constrain-area.html │ │ │ │ ├── default.html │ │ │ │ ├── delay-start.html │ │ │ │ ├── helper.html │ │ │ │ ├── index.html │ │ │ │ ├── max-min.html │ │ │ │ ├── snap-to-grid.html │ │ │ │ ├── synchronous-resize.html │ │ │ │ ├── textarea.html │ │ │ │ └── visual-feedback.html │ │ │ ├── selectable │ │ │ │ ├── default.html │ │ │ │ ├── display-grid.html │ │ │ │ ├── index.html │ │ │ │ └── serialize.html │ │ │ ├── show │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── slider │ │ │ │ ├── colorpicker.html │ │ │ │ ├── default.html │ │ │ │ ├── hotelrooms.html │ │ │ │ ├── index.html │ │ │ │ ├── multiple-vertical.html │ │ │ │ ├── range-vertical.html │ │ │ │ ├── range.html │ │ │ │ ├── rangemax.html │ │ │ │ ├── rangemin.html │ │ │ │ ├── side-scroll.html │ │ │ │ ├── slider-vertical.html │ │ │ │ └── steps.html │ │ │ ├── sortable │ │ │ │ ├── connect-lists-through-tabs.html │ │ │ │ ├── connect-lists.html │ │ │ │ ├── default.html │ │ │ │ ├── delay-start.html │ │ │ │ ├── display-grid.html │ │ │ │ ├── empty-lists.html │ │ │ │ ├── index.html │ │ │ │ ├── items.html │ │ │ │ ├── placeholder.html │ │ │ │ └── portlets.html │ │ │ ├── spinner │ │ │ │ ├── currency.html │ │ │ │ ├── decimal.html │ │ │ │ ├── default.html │ │ │ │ ├── index.html │ │ │ │ ├── latlong.html │ │ │ │ ├── overflow.html │ │ │ │ └── time.html │ │ │ ├── switchClass │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── tabs │ │ │ │ ├── ajax.html │ │ │ │ ├── ajax │ │ │ │ │ ├── content1.html │ │ │ │ │ ├── content2.html │ │ │ │ │ ├── content3-slow.php │ │ │ │ │ └── content4-broken.php │ │ │ │ ├── bottom.html │ │ │ │ ├── collapsible.html │ │ │ │ ├── default.html │ │ │ │ ├── index.html │ │ │ │ ├── manipulation.html │ │ │ │ ├── mouseover.html │ │ │ │ ├── sortable.html │ │ │ │ └── vertical.html │ │ │ ├── toggle │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── toggleClass │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── tooltip │ │ │ │ ├── ajax │ │ │ │ │ ├── content1.html │ │ │ │ │ └── content2.html │ │ │ │ ├── custom-animation.html │ │ │ │ ├── custom-content.html │ │ │ │ ├── custom-style.html │ │ │ │ ├── default.html │ │ │ │ ├── forms.html │ │ │ │ ├── images │ │ │ │ │ ├── st-stephens.jpg │ │ │ │ │ └── tower-bridge.jpg │ │ │ │ ├── index.html │ │ │ │ ├── tracking.html │ │ │ │ └── video-player.html │ │ │ └── widget │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ ├── docs │ │ │ ├── accordion.html │ │ │ ├── autocomplete.html │ │ │ ├── blind-effect.html │ │ │ ├── bounce-effect.html │ │ │ ├── button.html │ │ │ ├── clip-effect.html │ │ │ ├── datepicker.html │ │ │ ├── dialog.html │ │ │ ├── draggable.html │ │ │ ├── drop-effect.html │ │ │ ├── droppable.html │ │ │ ├── explode-effect.html │ │ │ ├── fade-effect.html │ │ │ ├── fold-effect.html │ │ │ ├── highlight-effect.html │ │ │ ├── jQuery.widget.bridge.html │ │ │ ├── jQuery.widget.html │ │ │ ├── menu.html │ │ │ ├── mouse.html │ │ │ ├── position.html │ │ │ ├── progressbar.html │ │ │ ├── puff-effect.html │ │ │ ├── pulsate-effect.html │ │ │ ├── resizable.html │ │ │ ├── scale-effect.html │ │ │ ├── selectable.html │ │ │ ├── shake-effect.html │ │ │ ├── size-effect.html │ │ │ ├── slide-effect.html │ │ │ ├── slider.html │ │ │ ├── sortable.html │ │ │ ├── spinner.html │ │ │ ├── tabs.html │ │ │ ├── tooltip.html │ │ │ └── transfer-effect.html │ │ ├── external │ │ │ ├── globalize.culture.de-DE.js │ │ │ ├── globalize.culture.ja-JP.js │ │ │ ├── globalize.js │ │ │ ├── jquery.mousewheel.js │ │ │ ├── jshint.js │ │ │ ├── qunit.css │ │ │ └── qunit.js │ │ ├── jquery-1.10.2.js │ │ ├── package.json │ │ ├── themes │ │ │ ├── base │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── 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.css │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ ├── jquery.ui.all.css │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ ├── jquery.ui.base.css │ │ │ │ ├── jquery.ui.button.css │ │ │ │ ├── jquery.ui.core.css │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ ├── jquery.ui.menu.css │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ ├── jquery.ui.spinner.css │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ ├── jquery.ui.theme.css │ │ │ │ ├── jquery.ui.tooltip.css │ │ │ │ └── minified │ │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── 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.min.css │ │ │ │ │ ├── jquery.ui.accordion.min.css │ │ │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ │ │ ├── jquery.ui.button.min.css │ │ │ │ │ ├── jquery.ui.core.min.css │ │ │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ │ │ ├── jquery.ui.dialog.min.css │ │ │ │ │ ├── jquery.ui.menu.min.css │ │ │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ │ │ ├── jquery.ui.resizable.min.css │ │ │ │ │ ├── jquery.ui.selectable.min.css │ │ │ │ │ ├── jquery.ui.slider.min.css │ │ │ │ │ ├── jquery.ui.spinner.min.css │ │ │ │ │ ├── jquery.ui.tabs.min.css │ │ │ │ │ ├── jquery.ui.theme.min.css │ │ │ │ │ └── jquery.ui.tooltip.min.css │ │ │ └── facebook │ │ │ │ ├── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-bg_flat_0_333333_40x100.png │ │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ │ │ ├── ui-bg_flat_75_3b5998_40x100.png │ │ │ │ ├── ui-bg_flat_75_d4dae8_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_flat_95_ffebe8_40x100.png │ │ │ │ ├── ui-bg_glass_55_fff9d7_1x400.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ ├── jquery.ui.all.css │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ ├── jquery.ui.base.css │ │ │ │ ├── jquery.ui.button.css │ │ │ │ ├── jquery.ui.core.css │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ ├── jquery.ui.menu.css │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ ├── jquery.ui.spinner.css │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ ├── jquery.ui.theme.css │ │ │ │ ├── jquery.ui.tooltip.css │ │ │ │ └── minified │ │ │ │ ├── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-bg_flat_0_333333_40x100.png │ │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ │ │ ├── ui-bg_flat_75_3b5998_40x100.png │ │ │ │ ├── ui-bg_flat_75_d4dae8_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_flat_95_ffebe8_40x100.png │ │ │ │ ├── ui-bg_glass_55_fff9d7_1x400.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.min.css │ │ │ │ ├── jquery.ui.accordion.min.css │ │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ │ ├── jquery.ui.button.min.css │ │ │ │ ├── jquery.ui.core.min.css │ │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ │ ├── jquery.ui.dialog.min.css │ │ │ │ ├── jquery.ui.menu.min.css │ │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ │ ├── jquery.ui.resizable.min.css │ │ │ │ ├── jquery.ui.selectable.min.css │ │ │ │ ├── jquery.ui.slider.min.css │ │ │ │ ├── jquery.ui.spinner.min.css │ │ │ │ ├── jquery.ui.tabs.min.css │ │ │ │ ├── jquery.ui.theme.min.css │ │ │ │ └── jquery.ui.tooltip.min.css │ │ ├── ui.accordion.jquery.json │ │ ├── ui.autocomplete.jquery.json │ │ ├── ui.button.jquery.json │ │ ├── ui.core.jquery.json │ │ ├── ui.datepicker.jquery.json │ │ ├── ui.dialog.jquery.json │ │ ├── ui.draggable.jquery.json │ │ ├── ui.droppable.jquery.json │ │ ├── ui.effect-blind.jquery.json │ │ ├── ui.effect-bounce.jquery.json │ │ ├── ui.effect-clip.jquery.json │ │ ├── ui.effect-drop.jquery.json │ │ ├── ui.effect-explode.jquery.json │ │ ├── ui.effect-fade.jquery.json │ │ ├── ui.effect-fold.jquery.json │ │ ├── ui.effect-highlight.jquery.json │ │ ├── ui.effect-pulsate.jquery.json │ │ ├── ui.effect-scale.jquery.json │ │ ├── ui.effect-shake.jquery.json │ │ ├── ui.effect-slide.jquery.json │ │ ├── ui.effect-transfer.jquery.json │ │ ├── ui.effect.jquery.json │ │ ├── ui.menu.jquery.json │ │ ├── ui.mouse.jquery.json │ │ ├── ui.position.jquery.json │ │ ├── ui.progressbar.jquery.json │ │ ├── ui.resizable.jquery.json │ │ ├── ui.selectable.jquery.json │ │ ├── ui.slider.jquery.json │ │ ├── ui.sortable.jquery.json │ │ ├── ui.spinner.jquery.json │ │ ├── ui.tabs.jquery.json │ │ ├── ui.tooltip.jquery.json │ │ ├── ui.widget.jquery.json │ │ └── ui │ │ │ ├── i18n │ │ │ ├── jquery-ui-i18n.js │ │ │ ├── jquery.ui.datepicker-af.js │ │ │ ├── jquery.ui.datepicker-ar-DZ.js │ │ │ ├── jquery.ui.datepicker-ar.js │ │ │ ├── jquery.ui.datepicker-az.js │ │ │ ├── jquery.ui.datepicker-be.js │ │ │ ├── jquery.ui.datepicker-bg.js │ │ │ ├── jquery.ui.datepicker-bs.js │ │ │ ├── jquery.ui.datepicker-ca.js │ │ │ ├── jquery.ui.datepicker-cs.js │ │ │ ├── jquery.ui.datepicker-cy-GB.js │ │ │ ├── jquery.ui.datepicker-da.js │ │ │ ├── jquery.ui.datepicker-de.js │ │ │ ├── jquery.ui.datepicker-el.js │ │ │ ├── jquery.ui.datepicker-en-AU.js │ │ │ ├── jquery.ui.datepicker-en-GB.js │ │ │ ├── jquery.ui.datepicker-en-NZ.js │ │ │ ├── jquery.ui.datepicker-eo.js │ │ │ ├── jquery.ui.datepicker-es.js │ │ │ ├── jquery.ui.datepicker-et.js │ │ │ ├── jquery.ui.datepicker-eu.js │ │ │ ├── jquery.ui.datepicker-fa.js │ │ │ ├── jquery.ui.datepicker-fi.js │ │ │ ├── jquery.ui.datepicker-fo.js │ │ │ ├── jquery.ui.datepicker-fr-CA.js │ │ │ ├── jquery.ui.datepicker-fr-CH.js │ │ │ ├── jquery.ui.datepicker-fr.js │ │ │ ├── jquery.ui.datepicker-gl.js │ │ │ ├── jquery.ui.datepicker-he.js │ │ │ ├── jquery.ui.datepicker-hi.js │ │ │ ├── jquery.ui.datepicker-hr.js │ │ │ ├── jquery.ui.datepicker-hu.js │ │ │ ├── jquery.ui.datepicker-hy.js │ │ │ ├── jquery.ui.datepicker-id.js │ │ │ ├── jquery.ui.datepicker-is.js │ │ │ ├── jquery.ui.datepicker-it.js │ │ │ ├── jquery.ui.datepicker-ja.js │ │ │ ├── jquery.ui.datepicker-ka.js │ │ │ ├── jquery.ui.datepicker-kk.js │ │ │ ├── jquery.ui.datepicker-km.js │ │ │ ├── jquery.ui.datepicker-ko.js │ │ │ ├── jquery.ui.datepicker-ky.js │ │ │ ├── jquery.ui.datepicker-lb.js │ │ │ ├── jquery.ui.datepicker-lt.js │ │ │ ├── jquery.ui.datepicker-lv.js │ │ │ ├── jquery.ui.datepicker-mk.js │ │ │ ├── jquery.ui.datepicker-ml.js │ │ │ ├── jquery.ui.datepicker-ms.js │ │ │ ├── jquery.ui.datepicker-nb.js │ │ │ ├── jquery.ui.datepicker-nl-BE.js │ │ │ ├── jquery.ui.datepicker-nl.js │ │ │ ├── jquery.ui.datepicker-nn.js │ │ │ ├── jquery.ui.datepicker-no.js │ │ │ ├── jquery.ui.datepicker-pl.js │ │ │ ├── jquery.ui.datepicker-pt-BR.js │ │ │ ├── jquery.ui.datepicker-pt.js │ │ │ ├── jquery.ui.datepicker-rm.js │ │ │ ├── jquery.ui.datepicker-ro.js │ │ │ ├── jquery.ui.datepicker-ru.js │ │ │ ├── jquery.ui.datepicker-sk.js │ │ │ ├── jquery.ui.datepicker-sl.js │ │ │ ├── jquery.ui.datepicker-sq.js │ │ │ ├── jquery.ui.datepicker-sr-SR.js │ │ │ ├── jquery.ui.datepicker-sr.js │ │ │ ├── jquery.ui.datepicker-sv.js │ │ │ ├── jquery.ui.datepicker-ta.js │ │ │ ├── jquery.ui.datepicker-th.js │ │ │ ├── jquery.ui.datepicker-tj.js │ │ │ ├── jquery.ui.datepicker-tr.js │ │ │ ├── jquery.ui.datepicker-uk.js │ │ │ ├── jquery.ui.datepicker-vi.js │ │ │ ├── jquery.ui.datepicker-zh-CN.js │ │ │ ├── jquery.ui.datepicker-zh-HK.js │ │ │ └── jquery.ui.datepicker-zh-TW.js │ │ │ ├── jquery-ui.custom.js │ │ │ ├── jquery.ui.accordion.js │ │ │ ├── jquery.ui.autocomplete.js │ │ │ ├── jquery.ui.button.js │ │ │ ├── jquery.ui.core.js │ │ │ ├── jquery.ui.datepicker.js │ │ │ ├── jquery.ui.dialog.js │ │ │ ├── jquery.ui.draggable.js │ │ │ ├── jquery.ui.droppable.js │ │ │ ├── jquery.ui.effect-blind.js │ │ │ ├── jquery.ui.effect-bounce.js │ │ │ ├── jquery.ui.effect-clip.js │ │ │ ├── jquery.ui.effect-drop.js │ │ │ ├── jquery.ui.effect-explode.js │ │ │ ├── jquery.ui.effect-fade.js │ │ │ ├── jquery.ui.effect-fold.js │ │ │ ├── jquery.ui.effect-highlight.js │ │ │ ├── jquery.ui.effect-pulsate.js │ │ │ ├── jquery.ui.effect-scale.js │ │ │ ├── jquery.ui.effect-shake.js │ │ │ ├── jquery.ui.effect-slide.js │ │ │ ├── jquery.ui.effect-transfer.js │ │ │ ├── jquery.ui.effect.js │ │ │ ├── jquery.ui.menu.js │ │ │ ├── jquery.ui.mouse.js │ │ │ ├── jquery.ui.position.js │ │ │ ├── jquery.ui.progressbar.js │ │ │ ├── jquery.ui.resizable.js │ │ │ ├── jquery.ui.selectable.js │ │ │ ├── jquery.ui.slider.js │ │ │ ├── jquery.ui.sortable.js │ │ │ ├── jquery.ui.spinner.js │ │ │ ├── jquery.ui.tabs.js │ │ │ ├── jquery.ui.tooltip.js │ │ │ ├── jquery.ui.widget.js │ │ │ └── minified │ │ │ ├── i18n │ │ │ ├── jquery-ui-i18n.min.js │ │ │ ├── jquery.ui.datepicker-af.min.js │ │ │ ├── jquery.ui.datepicker-ar-DZ.min.js │ │ │ ├── jquery.ui.datepicker-ar.min.js │ │ │ ├── jquery.ui.datepicker-az.min.js │ │ │ ├── jquery.ui.datepicker-be.min.js │ │ │ ├── jquery.ui.datepicker-bg.min.js │ │ │ ├── jquery.ui.datepicker-bs.min.js │ │ │ ├── jquery.ui.datepicker-ca.min.js │ │ │ ├── jquery.ui.datepicker-cs.min.js │ │ │ ├── jquery.ui.datepicker-cy-GB.min.js │ │ │ ├── jquery.ui.datepicker-da.min.js │ │ │ ├── jquery.ui.datepicker-de.min.js │ │ │ ├── jquery.ui.datepicker-el.min.js │ │ │ ├── jquery.ui.datepicker-en-AU.min.js │ │ │ ├── jquery.ui.datepicker-en-GB.min.js │ │ │ ├── jquery.ui.datepicker-en-NZ.min.js │ │ │ ├── jquery.ui.datepicker-eo.min.js │ │ │ ├── jquery.ui.datepicker-es.min.js │ │ │ ├── jquery.ui.datepicker-et.min.js │ │ │ ├── jquery.ui.datepicker-eu.min.js │ │ │ ├── jquery.ui.datepicker-fa.min.js │ │ │ ├── jquery.ui.datepicker-fi.min.js │ │ │ ├── jquery.ui.datepicker-fo.min.js │ │ │ ├── jquery.ui.datepicker-fr-CA.min.js │ │ │ ├── jquery.ui.datepicker-fr-CH.min.js │ │ │ ├── jquery.ui.datepicker-fr.min.js │ │ │ ├── jquery.ui.datepicker-gl.min.js │ │ │ ├── jquery.ui.datepicker-he.min.js │ │ │ ├── jquery.ui.datepicker-hi.min.js │ │ │ ├── jquery.ui.datepicker-hr.min.js │ │ │ ├── jquery.ui.datepicker-hu.min.js │ │ │ ├── jquery.ui.datepicker-hy.min.js │ │ │ ├── jquery.ui.datepicker-id.min.js │ │ │ ├── jquery.ui.datepicker-is.min.js │ │ │ ├── jquery.ui.datepicker-it.min.js │ │ │ ├── jquery.ui.datepicker-ja.min.js │ │ │ ├── jquery.ui.datepicker-ka.min.js │ │ │ ├── jquery.ui.datepicker-kk.min.js │ │ │ ├── jquery.ui.datepicker-km.min.js │ │ │ ├── jquery.ui.datepicker-ko.min.js │ │ │ ├── jquery.ui.datepicker-ky.min.js │ │ │ ├── jquery.ui.datepicker-lb.min.js │ │ │ ├── jquery.ui.datepicker-lt.min.js │ │ │ ├── jquery.ui.datepicker-lv.min.js │ │ │ ├── jquery.ui.datepicker-mk.min.js │ │ │ ├── jquery.ui.datepicker-ml.min.js │ │ │ ├── jquery.ui.datepicker-ms.min.js │ │ │ ├── jquery.ui.datepicker-nb.min.js │ │ │ ├── jquery.ui.datepicker-nl-BE.min.js │ │ │ ├── jquery.ui.datepicker-nl.min.js │ │ │ ├── jquery.ui.datepicker-nn.min.js │ │ │ ├── jquery.ui.datepicker-no.min.js │ │ │ ├── jquery.ui.datepicker-pl.min.js │ │ │ ├── jquery.ui.datepicker-pt-BR.min.js │ │ │ ├── jquery.ui.datepicker-pt.min.js │ │ │ ├── jquery.ui.datepicker-rm.min.js │ │ │ ├── jquery.ui.datepicker-ro.min.js │ │ │ ├── jquery.ui.datepicker-ru.min.js │ │ │ ├── jquery.ui.datepicker-sk.min.js │ │ │ ├── jquery.ui.datepicker-sl.min.js │ │ │ ├── jquery.ui.datepicker-sq.min.js │ │ │ ├── jquery.ui.datepicker-sr-SR.min.js │ │ │ ├── jquery.ui.datepicker-sr.min.js │ │ │ ├── jquery.ui.datepicker-sv.min.js │ │ │ ├── jquery.ui.datepicker-ta.min.js │ │ │ ├── jquery.ui.datepicker-th.min.js │ │ │ ├── jquery.ui.datepicker-tj.min.js │ │ │ ├── jquery.ui.datepicker-tr.min.js │ │ │ ├── jquery.ui.datepicker-uk.min.js │ │ │ ├── jquery.ui.datepicker-vi.min.js │ │ │ ├── jquery.ui.datepicker-zh-CN.min.js │ │ │ ├── jquery.ui.datepicker-zh-HK.min.js │ │ │ └── jquery.ui.datepicker-zh-TW.min.js │ │ │ ├── jquery-ui.custom.min.js │ │ │ ├── jquery.ui.accordion.min.js │ │ │ ├── jquery.ui.autocomplete.min.js │ │ │ ├── jquery.ui.button.min.js │ │ │ ├── jquery.ui.core.min.js │ │ │ ├── jquery.ui.datepicker.min.js │ │ │ ├── jquery.ui.dialog.min.js │ │ │ ├── jquery.ui.draggable.min.js │ │ │ ├── jquery.ui.droppable.min.js │ │ │ ├── jquery.ui.effect-blind.min.js │ │ │ ├── jquery.ui.effect-bounce.min.js │ │ │ ├── jquery.ui.effect-clip.min.js │ │ │ ├── jquery.ui.effect-drop.min.js │ │ │ ├── jquery.ui.effect-explode.min.js │ │ │ ├── jquery.ui.effect-fade.min.js │ │ │ ├── jquery.ui.effect-fold.min.js │ │ │ ├── jquery.ui.effect-highlight.min.js │ │ │ ├── jquery.ui.effect-pulsate.min.js │ │ │ ├── jquery.ui.effect-scale.min.js │ │ │ ├── jquery.ui.effect-shake.min.js │ │ │ ├── jquery.ui.effect-slide.min.js │ │ │ ├── jquery.ui.effect-transfer.min.js │ │ │ ├── jquery.ui.effect.min.js │ │ │ ├── jquery.ui.menu.min.js │ │ │ ├── jquery.ui.mouse.min.js │ │ │ ├── jquery.ui.position.min.js │ │ │ ├── jquery.ui.progressbar.min.js │ │ │ ├── jquery.ui.resizable.min.js │ │ │ ├── jquery.ui.selectable.min.js │ │ │ ├── jquery.ui.slider.min.js │ │ │ ├── jquery.ui.sortable.min.js │ │ │ ├── jquery.ui.spinner.min.js │ │ │ ├── jquery.ui.tabs.min.js │ │ │ ├── jquery.ui.tooltip.min.js │ │ │ └── jquery.ui.widget.min.js │ ├── index.html │ └── js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-ui-1.10.4.custom.js │ │ └── jquery-ui.min.js ├── jquery-ui-1.11.2 │ ├── external │ │ └── jquery │ │ │ └── jquery.js │ ├── images │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ ├── ui-bg_flat_0_333333_40x100.png │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ ├── ui-bg_flat_75_3b5998_40x100.png │ │ ├── ui-bg_flat_75_d4dae8_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_flat_95_ffebe8_40x100.png │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ ├── ui-bg_glass_55_fff9d7_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_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_cd0a0a_256x240.png │ │ ├── ui-icons_ef8c08_256x240.png │ │ ├── ui-icons_ffd27a_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ ├── index.html │ ├── jquery-ui.css │ ├── jquery-ui.js │ ├── jquery-ui.min.css │ ├── jquery-ui.min.js │ ├── jquery-ui.structure.css │ ├── jquery-ui.structure.min.css │ ├── jquery-ui.theme.css │ ├── jquery-ui.theme.min.css │ ├── js │ │ ├── jquery-1.6.2.min.js │ │ ├── jquery-ui-1.8.16.custom.js │ │ └── jquery-ui-1.8.16.custom.min.js │ └── theme │ │ └── facebook │ │ ├── images │ │ ├── bxBBFKhnmCK.png │ │ ├── jp8TzrZb6J1.png │ │ ├── ui-bg_flat_0_aaaaaa_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_75_ffffff_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-bg_inset-soft_95_fef1ec_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ ├── ui-icons_888888_256x240_old.png │ │ └── ui-icons_cd0a0a_256x240.png │ │ └── jquery-ui.css ├── jquery-ui-bootstrap │ ├── .gitignore │ ├── README.md │ ├── component.json │ ├── images │ │ ├── ui-icons_333333_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_B94A48_256x240.png │ ├── jquery.ui.theme.css │ └── jquery.ui.theme.font-awesome.css ├── jquery-validation-1.13.1 │ ├── Gruntfile.js │ ├── README.md │ ├── demo │ │ ├── ajaxSubmit-integration-demo.html │ │ ├── captcha │ │ │ ├── captcha.js │ │ │ ├── fonts │ │ │ │ └── Anorexia.ttf │ │ │ ├── image_req.php │ │ │ ├── images │ │ │ │ ├── button.png │ │ │ │ └── image.php │ │ │ ├── index.php │ │ │ ├── newsession.php │ │ │ ├── process.php │ │ │ ├── rand.php │ │ │ └── style.css │ │ ├── css │ │ │ ├── cmxform.css │ │ │ ├── cmxformTemplate.css │ │ │ ├── core.css │ │ │ ├── reset.css │ │ │ └── screen.css │ │ ├── custom-messages-data-demo.html │ │ ├── custom-methods-demo.html │ │ ├── dynamic-totals.html │ │ ├── errorcontainer-demo.html │ │ ├── errors-within-labels.html │ │ ├── file_input.html │ │ ├── images │ │ │ ├── bg.gif │ │ │ ├── checked.gif │ │ │ ├── cmxform-divider.gif │ │ │ ├── cmxform-fieldset.gif │ │ │ ├── loading.gif │ │ │ └── unchecked.gif │ │ ├── index.html │ │ ├── jquerymobile.html │ │ ├── login │ │ │ ├── images │ │ │ │ ├── bg.gif │ │ │ │ ├── header1.jpg │ │ │ │ ├── page.gif │ │ │ │ └── required_star.gif │ │ │ ├── index.html │ │ │ └── screen.css │ │ ├── marketo │ │ │ ├── images │ │ │ │ ├── backRequiredGray.gif │ │ │ │ ├── back_green-fade.gif │ │ │ │ ├── back_nav_blue.gif │ │ │ │ ├── blank.gif │ │ │ │ ├── button-submit.gif │ │ │ │ ├── favicon.ico │ │ │ │ ├── help.png │ │ │ │ ├── left-nav-callout-long.png │ │ │ │ ├── login-sprite.gif │ │ │ │ ├── logo_marketo.gif │ │ │ │ ├── sf.png │ │ │ │ ├── step1-24.gif │ │ │ │ ├── step2-24.gif │ │ │ │ ├── step3-24.gif │ │ │ │ ├── tab-sprite.gif │ │ │ │ ├── tab_green.gif │ │ │ │ ├── time.png │ │ │ │ ├── toggle.gif │ │ │ │ └── warning.gif │ │ │ ├── index.html │ │ │ ├── jquery.maskedinput.js │ │ │ ├── mktSignup.js │ │ │ ├── step2.htm │ │ │ └── stylesheet.css │ │ ├── milk │ │ │ ├── bg.gif │ │ │ ├── index.html │ │ │ ├── left_white.png │ │ │ ├── milk.css │ │ │ ├── milk.png │ │ │ └── right_white.png │ │ ├── multipart │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── radio-checkbox-select-demo.html │ │ ├── requirejs │ │ │ ├── app.js │ │ │ └── index.html │ │ ├── site-demos.css │ │ ├── themerollered.html │ │ └── tinymce │ │ │ ├── index.html │ │ │ ├── themes │ │ │ └── simple │ │ │ │ ├── editor_template.js │ │ │ │ ├── img │ │ │ │ └── icons.gif │ │ │ │ ├── langs │ │ │ │ └── en.js │ │ │ │ └── skins │ │ │ │ └── default │ │ │ │ └── ui.css │ │ │ └── tiny_mce.js │ ├── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ └── localization │ │ │ ├── messages_ar.js │ │ │ ├── messages_ar.min.js │ │ │ ├── messages_bg.js │ │ │ ├── messages_bg.min.js │ │ │ ├── messages_ca.js │ │ │ ├── messages_ca.min.js │ │ │ ├── messages_cs.js │ │ │ ├── messages_cs.min.js │ │ │ ├── messages_da.js │ │ │ ├── messages_da.min.js │ │ │ ├── messages_de.js │ │ │ ├── messages_de.min.js │ │ │ ├── messages_el.js │ │ │ ├── messages_el.min.js │ │ │ ├── messages_es.js │ │ │ ├── messages_es.min.js │ │ │ ├── messages_es_AR.js │ │ │ ├── messages_es_AR.min.js │ │ │ ├── messages_et.js │ │ │ ├── messages_et.min.js │ │ │ ├── messages_eu.js │ │ │ ├── messages_eu.min.js │ │ │ ├── messages_fa.js │ │ │ ├── messages_fa.min.js │ │ │ ├── messages_fi.js │ │ │ ├── messages_fi.min.js │ │ │ ├── messages_fr.js │ │ │ ├── messages_fr.min.js │ │ │ ├── messages_gl.js │ │ │ ├── messages_gl.min.js │ │ │ ├── messages_he.js │ │ │ ├── messages_he.min.js │ │ │ ├── messages_hr.js │ │ │ ├── messages_hr.min.js │ │ │ ├── messages_hu.js │ │ │ ├── messages_hu.min.js │ │ │ ├── messages_id.js │ │ │ ├── messages_id.min.js │ │ │ ├── messages_is.js │ │ │ ├── messages_is.min.js │ │ │ ├── messages_it.js │ │ │ ├── messages_it.min.js │ │ │ ├── messages_ja.js │ │ │ ├── messages_ja.min.js │ │ │ ├── messages_ka.js │ │ │ ├── messages_ka.min.js │ │ │ ├── messages_kk.js │ │ │ ├── messages_kk.min.js │ │ │ ├── messages_ko.js │ │ │ ├── messages_ko.min.js │ │ │ ├── messages_lt.js │ │ │ ├── messages_lt.min.js │ │ │ ├── messages_lv.js │ │ │ ├── messages_lv.min.js │ │ │ ├── messages_my.js │ │ │ ├── messages_my.min.js │ │ │ ├── messages_nl.js │ │ │ ├── messages_nl.min.js │ │ │ ├── messages_no.js │ │ │ ├── messages_no.min.js │ │ │ ├── messages_pl.js │ │ │ ├── messages_pl.min.js │ │ │ ├── messages_pt_BR.js │ │ │ ├── messages_pt_BR.min.js │ │ │ ├── messages_pt_PT.js │ │ │ ├── messages_pt_PT.min.js │ │ │ ├── messages_ro.js │ │ │ ├── messages_ro.min.js │ │ │ ├── messages_ru.js │ │ │ ├── messages_ru.min.js │ │ │ ├── messages_si.js │ │ │ ├── messages_si.min.js │ │ │ ├── messages_sk.js │ │ │ ├── messages_sk.min.js │ │ │ ├── messages_sl.js │ │ │ ├── messages_sl.min.js │ │ │ ├── messages_sr.js │ │ │ ├── messages_sr.min.js │ │ │ ├── messages_sr_lat.js │ │ │ ├── messages_sr_lat.min.js │ │ │ ├── messages_sv.js │ │ │ ├── messages_sv.min.js │ │ │ ├── messages_th.js │ │ │ ├── messages_th.min.js │ │ │ ├── messages_tj.js │ │ │ ├── messages_tj.min.js │ │ │ ├── messages_tr.js │ │ │ ├── messages_tr.min.js │ │ │ ├── messages_uk.js │ │ │ ├── messages_uk.min.js │ │ │ ├── messages_vi.js │ │ │ ├── messages_vi.min.js │ │ │ ├── messages_zh.js │ │ │ ├── messages_zh.min.js │ │ │ ├── messages_zh_TW.js │ │ │ ├── messages_zh_TW.min.js │ │ │ ├── methods_de.js │ │ │ ├── methods_de.min.js │ │ │ ├── methods_es_CL.js │ │ │ ├── methods_es_CL.min.js │ │ │ ├── methods_fi.js │ │ │ ├── methods_fi.min.js │ │ │ ├── methods_nl.js │ │ │ ├── methods_nl.min.js │ │ │ ├── methods_pt.js │ │ │ └── methods_pt.min.js │ ├── lib │ │ ├── jquery-1.11.1.js │ │ ├── jquery-1.6.4.js │ │ ├── jquery-1.7.2.js │ │ ├── jquery-1.8.3.js │ │ ├── jquery-1.9.1.js │ │ ├── jquery.form.js │ │ ├── jquery.js │ │ ├── jquery.mockjax.js │ │ ├── jquery.simulate.js │ │ └── require.js │ ├── package.json │ ├── src │ │ ├── additional │ │ │ ├── accept.js │ │ │ ├── additional.js │ │ │ ├── alphanumeric.js │ │ │ ├── bankaccountNL.js │ │ │ ├── bankorgiroaccountNL.js │ │ │ ├── bic.js │ │ │ ├── cifES.js │ │ │ ├── creditcardtypes.js │ │ │ ├── currency.js │ │ │ ├── dateFA.js │ │ │ ├── dateITA.js │ │ │ ├── dateNL.js │ │ │ ├── extension.js │ │ │ ├── giroaccountNL.js │ │ │ ├── iban.js │ │ │ ├── integer.js │ │ │ ├── ipv4.js │ │ │ ├── ipv6.js │ │ │ ├── lettersonly.js │ │ │ ├── letterswithbasicpunc.js │ │ │ ├── mobileNL.js │ │ │ ├── mobileUK.js │ │ │ ├── nieES.js │ │ │ ├── nifES.js │ │ │ ├── nowhitespace.js │ │ │ ├── pattern.js │ │ │ ├── phoneNL.js │ │ │ ├── phoneUK.js │ │ │ ├── phoneUS.js │ │ │ ├── phonesUK.js │ │ │ ├── postalCodeCA.js │ │ │ ├── postalcodeBR.js │ │ │ ├── postalcodeIT.js │ │ │ ├── postalcodeNL.js │ │ │ ├── postcodeUK.js │ │ │ ├── require_from_group.js │ │ │ ├── skip_or_fill_minimum.js │ │ │ ├── statesUS.js │ │ │ ├── strippedminlength.js │ │ │ ├── time.js │ │ │ ├── time12h.js │ │ │ ├── url2.js │ │ │ ├── vinUS.js │ │ │ ├── zipcodeUS.js │ │ │ └── ziprange.js │ │ ├── ajax.js │ │ ├── core.js │ │ ├── delegate.js │ │ └── localization │ │ │ ├── messages_ar.js │ │ │ ├── messages_bg.js │ │ │ ├── messages_ca.js │ │ │ ├── messages_cs.js │ │ │ ├── messages_da.js │ │ │ ├── messages_de.js │ │ │ ├── messages_el.js │ │ │ ├── messages_es.js │ │ │ ├── messages_es_AR.js │ │ │ ├── messages_et.js │ │ │ ├── messages_eu.js │ │ │ ├── messages_fa.js │ │ │ ├── messages_fi.js │ │ │ ├── messages_fr.js │ │ │ ├── messages_gl.js │ │ │ ├── messages_he.js │ │ │ ├── messages_hr.js │ │ │ ├── messages_hu.js │ │ │ ├── messages_id.js │ │ │ ├── messages_is.js │ │ │ ├── messages_it.js │ │ │ ├── messages_ja.js │ │ │ ├── messages_ka.js │ │ │ ├── messages_kk.js │ │ │ ├── messages_ko.js │ │ │ ├── messages_lt.js │ │ │ ├── messages_lv.js │ │ │ ├── messages_my.js │ │ │ ├── messages_nl.js │ │ │ ├── messages_no.js │ │ │ ├── messages_pl.js │ │ │ ├── messages_pt_BR.js │ │ │ ├── messages_pt_PT.js │ │ │ ├── messages_ro.js │ │ │ ├── messages_ru.js │ │ │ ├── messages_si.js │ │ │ ├── messages_sk.js │ │ │ ├── messages_sl.js │ │ │ ├── messages_sr.js │ │ │ ├── messages_sr_lat.js │ │ │ ├── messages_sv.js │ │ │ ├── messages_th.js │ │ │ ├── messages_tj.js │ │ │ ├── messages_tr.js │ │ │ ├── messages_uk.js │ │ │ ├── messages_vi.js │ │ │ ├── messages_zh.js │ │ │ ├── messages_zh_TW.js │ │ │ ├── methods_de.js │ │ │ ├── methods_es_CL.js │ │ │ ├── methods_fi.js │ │ │ ├── methods_nl.js │ │ │ └── methods_pt.js │ └── test │ │ ├── aria.js │ │ ├── error-placement.js │ │ ├── index.html │ │ ├── messages.js │ │ ├── methods.js │ │ ├── qunit │ │ ├── qunit.css │ │ └── qunit.js │ │ ├── rules.js │ │ └── test.js ├── jquery.dialogextend │ ├── jquery.dialogextend.js │ └── jquery.dialogextend.min.js ├── jquery.msgbox │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── doc.html │ ├── examples │ │ ├── images │ │ │ ├── sky1.jpg │ │ │ ├── sky2.jpg │ │ │ ├── sky3.jpg │ │ │ └── sky4.jpg │ │ ├── index.html │ │ └── sub.html │ ├── index.html │ ├── jquery.msgbox.i18n.js │ ├── jquery.msgbox.js │ ├── jquery.msgbox.min.js │ ├── logo.png │ ├── style.css │ └── themes │ │ ├── black │ │ ├── css │ │ │ └── jquery.msgbox.css │ │ └── img │ │ │ ├── confirm.png │ │ │ ├── controls.png │ │ │ ├── error.png │ │ │ ├── info.png │ │ │ ├── loading.gif │ │ │ ├── prompt.png │ │ │ ├── success.png │ │ │ └── warning.png │ │ ├── bootstrap │ │ ├── css │ │ │ └── jquery.msgbox.css │ │ └── img │ │ │ ├── confirm.png │ │ │ ├── controls.png │ │ │ ├── error.png │ │ │ ├── info.png │ │ │ ├── loading.gif │ │ │ ├── prompt.png │ │ │ ├── success.png │ │ │ └── warning.png │ │ ├── facebook │ │ ├── css │ │ │ └── jquery.msgbox.css │ │ └── img │ │ │ ├── confirm.png │ │ │ ├── controls.png │ │ │ ├── error.png │ │ │ ├── info.png │ │ │ ├── loading.gif │ │ │ ├── prompt.png │ │ │ ├── success.png │ │ │ └── warning.png │ │ ├── jqueryui │ │ ├── css │ │ │ └── jquery.msgbox.css │ │ └── img │ │ │ ├── confirm.png │ │ │ ├── controls.png │ │ │ ├── error.png │ │ │ ├── info.png │ │ │ ├── loading.gif │ │ │ ├── prompt.png │ │ │ ├── success.png │ │ │ └── warning.png │ │ ├── mac │ │ ├── css │ │ │ └── jquery.msgbox.css │ │ └── img │ │ │ ├── confirm.png │ │ │ ├── controls.png │ │ │ ├── error.png │ │ │ ├── info.png │ │ │ ├── loading.gif │ │ │ ├── prompt.png │ │ │ ├── success.png │ │ │ └── warning.png │ │ ├── metro │ │ ├── css │ │ │ └── jquery.msgbox.css │ │ └── img │ │ │ ├── confirm.png │ │ │ ├── controls.png │ │ │ ├── error.png │ │ │ ├── info.png │ │ │ ├── loading.gif │ │ │ ├── prompt.png │ │ │ ├── success.png │ │ │ └── warning.png │ │ └── naked │ │ ├── css │ │ └── jquery.msgbox.css │ │ └── img │ │ ├── confirm.png │ │ ├── controls.png │ │ ├── error.png │ │ ├── info.png │ │ ├── loading.gif │ │ ├── prompt.png │ │ ├── success.png │ │ └── warning.png ├── jquery.popupwindow │ └── jquery.popupwindow.js ├── jquery.switchButton │ ├── README.md │ ├── index.html │ ├── jquery.switchButton.css │ ├── jquery.switchButton.js │ └── main.css ├── jtable.2.3.1 │ ├── README.md │ ├── dev │ │ ├── build │ │ │ ├── JTableBuilder-source.zip │ │ │ ├── README.md │ │ │ ├── jTableBuilder-build.bat │ │ │ └── jTableBuilder.exe │ │ ├── jquery.jtable.build.txt │ │ ├── jquery.jtable.core.js │ │ ├── jquery.jtable.creation.js │ │ ├── jquery.jtable.deletion.js │ │ ├── jquery.jtable.dynamiccolumns.js │ │ ├── jquery.jtable.editing.js │ │ ├── jquery.jtable.forms.js │ │ ├── jquery.jtable.header.txt │ │ ├── jquery.jtable.masterchild.js │ │ ├── jquery.jtable.paging.js │ │ ├── jquery.jtable.selecting.js │ │ ├── jquery.jtable.sorting.js │ │ └── jquery.jtable.utils.js │ ├── jTable.jquery.json │ └── lib │ │ ├── extensions │ │ ├── jquery.jtable.aspnetpagemethods.js │ │ └── jquery.jtable.aspnetpagemethods.min.js │ │ ├── external │ │ ├── json2.js │ │ └── json2.min.js │ │ ├── jquery.jtable.js │ │ ├── jquery.jtable.min.js │ │ ├── localization │ │ ├── jquery.jtable.ca.js │ │ ├── jquery.jtable.de.js │ │ ├── jquery.jtable.es.js │ │ ├── jquery.jtable.fa.js │ │ ├── jquery.jtable.fr.js │ │ ├── jquery.jtable.hr.js │ │ ├── jquery.jtable.hu.js │ │ ├── jquery.jtable.id.js │ │ ├── jquery.jtable.it.js │ │ ├── jquery.jtable.lt.js │ │ ├── jquery.jtable.nl-NL.js │ │ ├── jquery.jtable.pl.js │ │ ├── jquery.jtable.pt-BR.js │ │ ├── jquery.jtable.pt-PT.js │ │ ├── jquery.jtable.ro.js │ │ ├── jquery.jtable.ru.js │ │ ├── jquery.jtable.se.js │ │ ├── jquery.jtable.tr.js │ │ ├── jquery.jtable.vi.js │ │ └── jquery.jtable.zh-CN.js │ │ └── themes │ │ ├── basic │ │ ├── close.png │ │ ├── column-asc.png │ │ ├── column-desc.png │ │ ├── column-sortable.png │ │ ├── delete.png │ │ ├── edit.png │ │ ├── jtable_basic.css │ │ ├── jtable_basic.less │ │ └── jtable_basic.min.css │ │ ├── jqueryui │ │ ├── add.png │ │ ├── bg-thead.png │ │ ├── close.png │ │ ├── column-asc.png │ │ ├── column-desc.png │ │ ├── column-sortable.png │ │ ├── delete.png │ │ ├── edit.png │ │ ├── jtable_jqueryui.css │ │ ├── jtable_jqueryui.less │ │ ├── jtable_jqueryui.min.css │ │ └── loading.gif │ │ ├── jtable_theme_base.less │ │ ├── lightcolor │ │ ├── add.png │ │ ├── bg-thead.png │ │ ├── blue │ │ │ ├── jtable.css │ │ │ ├── jtable.less │ │ │ ├── jtable.min.css │ │ │ └── loading.gif │ │ ├── close.png │ │ ├── column-asc.png │ │ ├── column-desc.png │ │ ├── column-sortable.png │ │ ├── delete.png │ │ ├── edit.png │ │ ├── gray │ │ │ ├── jtable.css │ │ │ ├── jtable.less │ │ │ ├── jtable.min.css │ │ │ └── loading.gif │ │ ├── green │ │ │ ├── jtable.css │ │ │ ├── jtable.less │ │ │ ├── jtable.min.css │ │ │ └── loading.gif │ │ ├── jtable_lightcolor_base.less │ │ ├── orange │ │ │ ├── jtable.css │ │ │ ├── jtable.less │ │ │ ├── jtable.min.css │ │ │ └── loading.gif │ │ └── red │ │ │ ├── jtable.css │ │ │ ├── jtable.less │ │ │ ├── jtable.min.css │ │ │ └── loading.gif │ │ └── metro │ │ ├── add.png │ │ ├── blue │ │ ├── jtable.css │ │ ├── jtable.less │ │ ├── jtable.min.css │ │ └── loading.gif │ │ ├── brown │ │ ├── jtable.css │ │ ├── jtable.less │ │ ├── jtable.min.css │ │ └── loading.gif │ │ ├── close.png │ │ ├── column-asc.png │ │ ├── column-desc.png │ │ ├── column-sortable.png │ │ ├── crimson │ │ ├── jtable.css │ │ ├── jtable.less │ │ ├── jtable.min.css │ │ └── loading.gif │ │ ├── darkgray │ │ ├── jtable.css │ │ ├── jtable.less │ │ ├── jtable.min.css │ │ └── loading.gif │ │ ├── darkorange │ │ ├── jtable.css │ │ ├── jtable.less │ │ ├── jtable.min.css │ │ └── loading.gif │ │ ├── delete.png │ │ ├── edit.png │ │ ├── green │ │ ├── jtable.css │ │ ├── jtable.less │ │ ├── jtable.min.css │ │ └── loading.gif │ │ ├── jtable_metro_base.css │ │ ├── jtable_metro_base.less │ │ ├── jtable_metro_base.min.css │ │ ├── lightgray │ │ ├── jtable.css │ │ ├── jtable.less │ │ ├── jtable.min.css │ │ └── loading.gif │ │ ├── pink │ │ ├── jtable.css │ │ ├── jtable.less │ │ ├── jtable.min.css │ │ └── loading.gif │ │ ├── purple │ │ ├── jtable.css │ │ ├── jtable.less │ │ ├── jtable.min.css │ │ └── loading.gif │ │ └── red │ │ ├── jtable.css │ │ ├── jtable.less │ │ ├── jtable.min.css │ │ └── loading.gif └── jtable.2.4.0 │ ├── extensions │ ├── jquery.jtable.aspnetpagemethods.js │ ├── jquery.jtable.aspnetpagemethods.min.js │ ├── jquery.jtable.buttonhover.js │ ├── jquery.jtable.buttonleft.js │ ├── jquery.jtable.customdelete.js │ ├── jquery.jtable.dialogcustom.js │ ├── jquery.jtable.editinline.js │ ├── jquery.jtable.footer.js │ ├── jquery.jtable.rowcustom.js │ ├── jquery.jtable.spreadsheet.js │ ├── jquery.jtable.toolbarsearch.js │ └── jquery.jtable.toolbarsearch.js.old │ ├── external │ ├── json2.js │ └── json2.min.js │ ├── jquery.jtable.js │ ├── jquery.jtable.min.js │ ├── localization │ ├── jquery.jtable.bd.js │ ├── jquery.jtable.ca.js │ ├── jquery.jtable.cz.js │ ├── jquery.jtable.de.js │ ├── jquery.jtable.es.js │ ├── jquery.jtable.fa.js │ ├── jquery.jtable.fr.js │ ├── jquery.jtable.hr.js │ ├── jquery.jtable.hu.js │ ├── jquery.jtable.id.js │ ├── jquery.jtable.it.js │ ├── jquery.jtable.lt.js │ ├── jquery.jtable.nl-NL.js │ ├── jquery.jtable.no.js │ ├── jquery.jtable.pl.js │ ├── jquery.jtable.pt-BR.js │ ├── jquery.jtable.pt-PT.js │ ├── jquery.jtable.ro.js │ ├── jquery.jtable.ru.js │ ├── jquery.jtable.se.js │ ├── jquery.jtable.tr.js │ ├── jquery.jtable.vi.js │ └── jquery.jtable.zh-CN.js │ └── themes │ ├── basic │ ├── close.png │ ├── column-asc.png │ ├── column-desc.png │ ├── column-sortable.png │ ├── delete.png │ ├── edit.png │ ├── jtable_basic.css │ ├── jtable_basic.less │ └── jtable_basic.min.css │ ├── jqueryui │ ├── add.png │ ├── bg-thead.png │ ├── close.png │ ├── column-asc.png │ ├── column-desc.png │ ├── column-sortable.png │ ├── delete.png │ ├── edit.png │ ├── jtable_jqueryui.css │ ├── jtable_jqueryui.less │ ├── jtable_jqueryui.min.css │ └── loading.gif │ ├── jtable_theme_base.less │ ├── lightcolor │ ├── add.png │ ├── bg-thead.png │ ├── blue │ │ ├── jtable.css │ │ ├── jtable.less │ │ ├── jtable.min.css │ │ └── loading.gif │ ├── close.png │ ├── column-asc.png │ ├── column-desc.png │ ├── column-sortable.png │ ├── delete.png │ ├── edit.png │ ├── facebook │ │ ├── jtable.css │ │ ├── jtable.less │ │ ├── jtable.min.css │ │ ├── loading.gif │ │ ├── lucidagrande-bold.woff │ │ └── lucidagrande.woff │ ├── gray │ │ ├── jtable.css │ │ ├── jtable.less │ │ ├── jtable.min.css │ │ └── loading.gif │ ├── green │ │ ├── jtable.css │ │ ├── jtable.less │ │ ├── jtable.min.css │ │ └── loading.gif │ ├── jtable_lightcolor_base.less │ ├── orange │ │ ├── jtable.css │ │ ├── jtable.less │ │ ├── jtable.min.css │ │ └── loading.gif │ └── red │ │ ├── jtable.css │ │ ├── jtable.less │ │ ├── jtable.min.css │ │ └── loading.gif │ └── metro │ ├── add.png │ ├── blue │ ├── jtable.css │ ├── jtable.less │ ├── jtable.min.css │ └── loading.gif │ ├── brown │ ├── jtable.css │ ├── jtable.less │ ├── jtable.min.css │ └── loading.gif │ ├── close.png │ ├── column-asc.png │ ├── column-desc.png │ ├── column-sortable.png │ ├── crimson │ ├── jtable.css │ ├── jtable.less │ ├── jtable.min.css │ └── loading.gif │ ├── darkgray │ ├── jtable.css │ ├── jtable.less │ ├── jtable.min.css │ └── loading.gif │ ├── darkorange │ ├── jtable.css │ ├── jtable.less │ ├── jtable.min.css │ └── loading.gif │ ├── delete.png │ ├── edit.png │ ├── facebook │ ├── jtable.css │ ├── jtable.less │ ├── jtable.min.css │ ├── loading.gif │ ├── lucidagrande-bold.woff │ └── lucidagrande.woff │ ├── green │ ├── jtable.css │ ├── jtable.less │ ├── jtable.min.css │ └── loading.gif │ ├── jtable_metro_base.css │ ├── jtable_metro_base.less │ ├── jtable_metro_base.min.css │ ├── lightgray │ ├── jtable.css │ ├── jtable.less │ ├── jtable.min.css │ └── loading.gif │ ├── pink │ ├── jtable.css │ ├── jtable.less │ ├── jtable.min.css │ └── loading.gif │ ├── purple │ ├── jtable.css │ ├── jtable.less │ ├── jtable.min.css │ └── loading.gif │ └── red │ ├── jtable.css │ ├── jtable.less │ ├── jtable.min.css │ └── loading.gif ├── script ├── custom.js ├── function.js ├── jquery-2.1.1.min.js └── main.js ├── ss.png ├── style ├── custom.css ├── darkgray │ ├── L.gif │ ├── Thumbs.db │ ├── bg.gif │ ├── bg_sled.gif │ ├── darkgray.css │ ├── horizon.gif │ ├── index.html │ ├── loading.gif │ ├── mid.gif │ ├── pm.gif │ ├── r.gif │ ├── v.gif │ ├── v.psb │ └── vertical.gif ├── default │ ├── L.gif │ ├── default.css │ ├── horizon.gif │ ├── index.html │ ├── loading.gif │ ├── mid.gif │ ├── pm.gif │ ├── r.gif │ ├── v.gif │ └── vertical.gif ├── gray │ ├── L.gif │ ├── bg_sled.gif │ ├── gray.css │ ├── horizon.gif │ ├── index.html │ ├── loading.gif │ ├── mid.gif │ ├── pm.gif │ ├── r.gif │ ├── v.gif │ └── vertical.gif ├── graygreen │ ├── L.gif │ ├── bg.gif │ ├── graygreen.css │ ├── horizon.gif │ ├── index.html │ ├── loading.gif │ ├── mid.gif │ ├── pm.gif │ ├── r.gif │ ├── v.gif │ └── vertical.gif ├── green │ ├── L.gif │ ├── bg.gif │ ├── green.css │ ├── horizon.gif │ ├── index.html │ ├── loading.gif │ ├── mid.gif │ ├── pm.gif │ ├── r.gif │ ├── v.gif │ └── vertical.gif ├── index.html ├── index.php ├── pink │ ├── L.gif │ ├── Thumbs.db │ ├── bg.gif │ ├── bg_sled.gif │ ├── horizon.gif │ ├── index.html │ ├── loading.gif │ ├── mid.gif │ ├── pink.css │ ├── pm.gif │ ├── r.gif │ ├── v.gif │ ├── v.psb │ └── vertical.gif └── vista │ ├── bg_over.gif │ ├── bg_selected.gif │ ├── index.html │ ├── loading.gif │ ├── pm.gif │ └── vista.css ├── system ├── content │ ├── mainnav.php │ └── topnav.php ├── controller.php ├── db │ ├── mysql.php │ └── sql.php ├── form.php ├── html.php ├── js.php ├── model.php ├── session.php ├── table.php └── view.php ├── template └── sb-admin-2 │ ├── blank.html │ ├── buttons.html │ ├── css │ ├── bootstrap-print.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── bootstrap.ori.css │ ├── plugins │ │ ├── dataTables.bootstrap.css │ │ ├── metisMenu │ │ │ ├── metisMenu.css │ │ │ └── metisMenu.min.css │ │ ├── morris.css │ │ ├── social-buttons.css │ │ └── timeline.css │ ├── sb-admin-2-fb.css │ └── sb-admin-2.css │ ├── empty.html │ ├── flot.html │ ├── font-awesome-4.1.0 │ ├── 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 │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff │ ├── forms.html │ ├── grid.html │ ├── index.html │ ├── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.11.0.js │ ├── plugins │ │ ├── dataTables │ │ │ ├── dataTables.bootstrap.js │ │ │ └── jquery.dataTables.js │ │ ├── flot │ │ │ ├── excanvas.min.js │ │ │ ├── flot-data.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.pie.js │ │ │ ├── jquery.flot.resize.js │ │ │ └── jquery.flot.tooltip.min.js │ │ ├── metisMenu │ │ │ ├── metisMenu.js │ │ │ └── metisMenu.min.js │ │ └── morris │ │ │ ├── morris-data.js │ │ │ ├── morris.js │ │ │ ├── morris.min.js │ │ │ └── raphael.min.js │ └── sb-admin-2.js │ ├── less │ ├── mixins.less │ ├── sb-admin-2.less │ └── variables.less │ ├── login.html │ ├── morris.html │ ├── notifications.html │ ├── panels-wells.html │ ├── print.html │ ├── tables.html │ └── typography.html └── views ├── layout ├── content.php ├── index.php ├── login.php ├── nohead.php ├── print.php ├── raw.php └── source.php └── site ├── form_film.php ├── group.php ├── index.php ├── listmenu.php ├── login.php ├── menu.php ├── profile.php ├── table.php ├── user.php └── user_access.php /.htaccess: -------------------------------------------------------------------------------- 1 | Options +FollowSymLinks -MultiViews 2 | 3 | RewriteEngine On 4 | RewriteCond %{REQUEST_FILENAME} !-l 5 | RewriteCond %{REQUEST_FILENAME} !-f 6 | RewriteCond %{REQUEST_FILENAME} !-d 7 | RewriteRule (.*) index.php/$1 [L] -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | bpjs-framework 2 | ============== 3 | 4 | Bootstrap PHP and JS, A Simple PHP Framework use Bootstrap and Jquery and other Plugin 5 | -------------------------------------------------------------------------------- /asset/app.php: -------------------------------------------------------------------------------- 1 | base = \NC\base::getInstance(); 10 | $this->db = $this->base->db; 11 | $this->user = $this->base->getCookie("user"); 12 | $this->request = $this->base->posts; 13 | } 14 | } 15 | 16 | ?> -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- 1 | "Sistem Informasi Apa Aja", 5 | "company"=>"PT. Apa Aja", 6 | "db" => (object)[ 7 | "driver" => "mysql", 8 | "host" => "localhost", 9 | "username" => "root", 10 | "password" => "root", 11 | "name" => "demo" 12 | ], 13 | "template" => "sb-admin-2" 14 | ]; 15 | ?> -------------------------------------------------------------------------------- /error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/error.log -------------------------------------------------------------------------------- /images/acl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/images/acl.png -------------------------------------------------------------------------------- /images/acl_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/images/acl_16.png -------------------------------------------------------------------------------- /images/acl_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/images/acl_64.png -------------------------------------------------------------------------------- /images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/images/add.png -------------------------------------------------------------------------------- /images/apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/images/apply.png -------------------------------------------------------------------------------- /images/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/images/cross.png -------------------------------------------------------------------------------- /images/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/images/group.png -------------------------------------------------------------------------------- /images/list_metro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/images/list_metro.png -------------------------------------------------------------------------------- /images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/images/loading.gif -------------------------------------------------------------------------------- /images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/images/menu.png -------------------------------------------------------------------------------- /images/please_wait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/images/please_wait.gif -------------------------------------------------------------------------------- /images/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/images/view.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | run(); -------------------------------------------------------------------------------- /plugins/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/index.php -------------------------------------------------------------------------------- /plugins/jform.1.0.0/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jform.1.0.0/icons.eot -------------------------------------------------------------------------------- /plugins/jform.1.0.0/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jform.1.0.0/icons.ttf -------------------------------------------------------------------------------- /plugins/jform.1.0.0/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jform.1.0.0/icons.woff -------------------------------------------------------------------------------- /plugins/jform.1.0.0/jform.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jform.1.0.0/jform.eot -------------------------------------------------------------------------------- /plugins/jform.1.0.0/jform.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jform.1.0.0/jform.ttf -------------------------------------------------------------------------------- /plugins/jform.1.0.0/jform.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jform.1.0.0/jform.woff -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/css/facebook/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/css/facebook/images/animated-overlay.gif -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/css/facebook/images/ui-bg_flat_0_333333_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/css/facebook/images/ui-bg_flat_0_333333_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/css/facebook/images/ui-bg_flat_65_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/css/facebook/images/ui-bg_flat_65_ffffff_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/css/facebook/images/ui-bg_flat_75_3b5998_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/css/facebook/images/ui-bg_flat_75_3b5998_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/css/facebook/images/ui-bg_flat_75_d4dae8_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/css/facebook/images/ui-bg_flat_75_d4dae8_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/css/facebook/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/css/facebook/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/css/facebook/images/ui-bg_flat_95_ffebe8_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/css/facebook/images/ui-bg_flat_95_ffebe8_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/css/facebook/images/ui-bg_glass_55_fff9d7_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/css/facebook/images/ui-bg_glass_55_fff9d7_1x400.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/css/facebook/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/css/facebook/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/css/facebook/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/css/facebook/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/css/facebook/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/css/facebook/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/css/facebook/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/css/facebook/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/css/facebook/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/css/facebook/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/addClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/animate/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/autocomplete/images/jquery_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/autocomplete/images/jquery_32x32.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/autocomplete/images/jqueryui_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/autocomplete/images/jqueryui_32x32.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/autocomplete/images/sizzlejs_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/autocomplete/images/sizzlejs_32x32.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/autocomplete/images/transparent_1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/autocomplete/images/transparent_1x1.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/autocomplete/images/ui-anim_basic_16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/autocomplete/images/ui-anim_basic_16x16.gif -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/button/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Button Demos 6 | 7 | 8 | 9 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/datepicker/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/datepicker/images/calendar.gif -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/demos.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-size: 62.5%; 3 | font-family: "Trebuchet MS", "Arial", "Helvetica", "Verdana", "sans-serif"; 4 | } 5 | 6 | table { 7 | font-size: 1em; 8 | } 9 | 10 | .demo-description { 11 | clear: both; 12 | padding: 12px; 13 | font-size: 1.3em; 14 | line-height: 1.4em; 15 | } 16 | 17 | .ui-draggable, .ui-droppable { 18 | background-position: top; 19 | } 20 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/dialog/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Dialog Demos 6 | 7 | 8 | 9 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/droppable/images/high_tatras.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/droppable/images/high_tatras.jpg -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/droppable/images/high_tatras2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/droppable/images/high_tatras2.jpg -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/droppable/images/high_tatras2_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/droppable/images/high_tatras2_min.jpg -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/droppable/images/high_tatras3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/droppable/images/high_tatras3.jpg -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/droppable/images/high_tatras3_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/droppable/images/high_tatras3_min.jpg -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/droppable/images/high_tatras4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/droppable/images/high_tatras4.jpg -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/droppable/images/high_tatras4_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/droppable/images/high_tatras4_min.jpg -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/droppable/images/high_tatras_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/droppable/images/high_tatras_min.jpg -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/effect/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/hide/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/images/calendar.gif -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/images/demo-config-on-tile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/images/demo-config-on-tile.gif -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/images/demo-config-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/images/demo-config-on.gif -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/images/demo-spindown-closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/images/demo-spindown-closed.gif -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/images/demo-spindown-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/images/demo-spindown-open.gif -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/images/icon-docs-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/images/icon-docs-info.gif -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/images/pbar-ani.gif -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/menu/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Menu Demos 6 | 7 | 8 | 9 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/position/images/earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/position/images/earth.jpg -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/position/images/flight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/position/images/flight.jpg -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/position/images/rocket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/position/images/rocket.jpg -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/position/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Position Demo 6 | 7 | 8 | 9 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/progressbar/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/progressbar/images/pbar-ani.gif -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/progressbar/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Progressbar Demos 6 | 7 | 8 | 9 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/removeClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/selectable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Selectable Demos 6 | 7 | 8 | 9 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/show/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/spinner/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Spinner Demos 6 | 7 | 8 | 9 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/switchClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/tabs/ajax/content4-broken.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/toggle/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/toggleClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/tooltip/ajax/content1.html: -------------------------------------------------------------------------------- 1 |

This content was loaded via ajax.

-------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/tooltip/ajax/content2.html: -------------------------------------------------------------------------------- 1 |

This other content was loaded via ajax.

-------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/tooltip/images/st-stephens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/tooltip/images/st-stephens.jpg -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/tooltip/images/tower-bridge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/demos/tooltip/images/tower-bridge.jpg -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/demos/widget/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Widget Demo 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/animated-overlay.gif -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.10.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2014 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/category/theming/ 10 | */ 11 | @import "jquery.ui.base.css"; 12 | @import "jquery.ui.theme.css"; 13 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Autocomplete 1.10.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2014 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/autocomplete/#theming 10 | */ 11 | .ui-autocomplete { 12 | position: absolute; 13 | top: 0; 14 | left: 0; 15 | cursor: default; 16 | } 17 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable 1.10.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2014 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | .ui-selectable-helper { 10 | position: absolute; 11 | z-index: 100; 12 | border: 1px dotted black; 13 | } 14 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/jquery.ui.tooltip.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Tooltip 1.10.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2014 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/tooltip/#theming 10 | */ 11 | .ui-tooltip { 12 | padding: 8px; 13 | position: absolute; 14 | z-index: 9999; 15 | max-width: 300px; 16 | -webkit-box-shadow: 0 0 5px #aaa; 17 | box-shadow: 0 0 5px #aaa; 18 | } 19 | body .ui-tooltip { 20 | border-width: 2px; 21 | } 22 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/animated-overlay.gif -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.4 - 2014-11-30 2 | * http://jqueryui.com 3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */ 4 | 5 | .ui-autocomplete{position:absolute;top:0;left:0;cursor:default} -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.4 - 2014-11-30 2 | * http://jqueryui.com 3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */ 4 | 5 | .ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("images/animated-overlay.gif");height:100%;filter:alpha(opacity=25);opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none} -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.4 - 2014-11-30 2 | * http://jqueryui.com 3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */ 4 | 5 | .ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black} -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/jquery.ui.theme.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.4 - 2014-11-30 2 | * http://jqueryui.com 3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */ 4 | 5 | undefined -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/base/minified/jquery.ui.tooltip.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.4 - 2014-11-30 2 | * http://jqueryui.com 3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */ 4 | 5 | .ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}body .ui-tooltip{border-width:2px} -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/animated-overlay.gif -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/ui-bg_flat_0_333333_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/ui-bg_flat_0_333333_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/ui-bg_flat_65_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/ui-bg_flat_65_ffffff_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/ui-bg_flat_75_3b5998_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/ui-bg_flat_75_3b5998_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/ui-bg_flat_75_d4dae8_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/ui-bg_flat_75_d4dae8_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/ui-bg_flat_95_ffebe8_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/ui-bg_flat_95_ffebe8_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/ui-bg_glass_55_fff9d7_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/ui-bg_glass_55_fff9d7_1x400.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.10.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2014 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/category/theming/ 10 | */ 11 | @import "jquery.ui.base.css"; 12 | @import "jquery.ui.theme.css"; 13 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Autocomplete 1.10.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2014 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/autocomplete/#theming 10 | */ 11 | .ui-autocomplete { 12 | position: absolute; 13 | top: 0; 14 | left: 0; 15 | cursor: default; 16 | } 17 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable 1.10.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2014 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | .ui-selectable-helper { 10 | position: absolute; 11 | z-index: 100; 12 | border: 1px dotted black; 13 | } 14 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/jquery.ui.tooltip.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Tooltip 1.10.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2014 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/tooltip/#theming 10 | */ 11 | .ui-tooltip { 12 | padding: 8px; 13 | position: absolute; 14 | z-index: 9999; 15 | max-width: 300px; 16 | -webkit-box-shadow: 0 0 5px #aaa; 17 | box-shadow: 0 0 5px #aaa; 18 | } 19 | body .ui-tooltip { 20 | border-width: 2px; 21 | } 22 | -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/animated-overlay.gif -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/ui-bg_flat_0_333333_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/ui-bg_flat_0_333333_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/ui-bg_flat_65_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/ui-bg_flat_65_ffffff_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/ui-bg_flat_75_3b5998_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/ui-bg_flat_75_3b5998_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/ui-bg_flat_75_d4dae8_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/ui-bg_flat_75_d4dae8_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/ui-bg_flat_95_ffebe8_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/ui-bg_flat_95_ffebe8_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/ui-bg_glass_55_fff9d7_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/ui-bg_glass_55_fff9d7_1x400.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.4 - 2014-11-30 2 | * http://jqueryui.com 3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */ 4 | 5 | .ui-autocomplete{position:absolute;top:0;left:0;cursor:default} -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.4 - 2014-11-30 2 | * http://jqueryui.com 3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */ 4 | 5 | .ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("images/animated-overlay.gif");height:100%;filter:alpha(opacity=25);opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none} -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.4 - 2014-11-30 2 | * http://jqueryui.com 3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */ 4 | 5 | .ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black} -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/themes/facebook/minified/jquery.ui.tooltip.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.4 - 2014-11-30 2 | * http://jqueryui.com 3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */ 4 | 5 | .ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}body .ui-tooltip{border-width:2px} -------------------------------------------------------------------------------- /plugins/jquery-ui-1.10.4/development-bundle/ui/minified/jquery.ui.effect-fade.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.4 - 2014-11-30 2 | * http://jqueryui.com 3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */ 4 | 5 | (function(e){e.effects.effect.fade=function(t,i){var s=e(this),n=e.effects.setMode(s,t.mode||"toggle");s.animate({opacity:n},{queue:!1,duration:t.duration,easing:t.easing,complete:i})}})(jQuery); -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/images/ui-bg_flat_0_333333_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/images/ui-bg_flat_0_333333_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/images/ui-bg_flat_65_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/images/ui-bg_flat_65_ffffff_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/images/ui-bg_flat_75_3b5998_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/images/ui-bg_flat_75_3b5998_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/images/ui-bg_flat_75_d4dae8_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/images/ui-bg_flat_75_d4dae8_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/images/ui-bg_flat_95_ffebe8_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/images/ui-bg_flat_95_ffebe8_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/images/ui-bg_glass_55_fff9d7_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/images/ui-bg_glass_55_fff9d7_1x400.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/theme/facebook/images/bxBBFKhnmCK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/theme/facebook/images/bxBBFKhnmCK.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/theme/facebook/images/jp8TzrZb6J1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/theme/facebook/images/jp8TzrZb6J1.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/theme/facebook/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/theme/facebook/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/theme/facebook/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/theme/facebook/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/theme/facebook/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/theme/facebook/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/theme/facebook/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/theme/facebook/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/theme/facebook/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/theme/facebook/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/theme/facebook/images/ui-bg_glass_75_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/theme/facebook/images/ui-bg_glass_75_ffffff_1x400.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/theme/facebook/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/theme/facebook/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/theme/facebook/images/ui-bg_inset-soft_95_fef1ec_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/theme/facebook/images/ui-bg_inset-soft_95_fef1ec_1x100.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/theme/facebook/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/theme/facebook/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/theme/facebook/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/theme/facebook/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/theme/facebook/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/theme/facebook/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/theme/facebook/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/theme/facebook/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/theme/facebook/images/ui-icons_888888_256x240_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/theme/facebook/images/ui-icons_888888_256x240_old.png -------------------------------------------------------------------------------- /plugins/jquery-ui-1.11.2/theme/facebook/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-1.11.2/theme/facebook/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-bootstrap/.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /plugins/jquery-ui-bootstrap/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "jquery-ui-bootstrap", 3 | "version" : "0.2.5", 4 | "main" : "./jquery.ui.theme.css", 5 | "dependencies" : { 6 | "jquery-ui" : ">=1.9.0" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /plugins/jquery-ui-bootstrap/images/ui-icons_333333_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-bootstrap/images/ui-icons_333333_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-bootstrap/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-bootstrap/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-bootstrap/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-bootstrap/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-ui-bootstrap/images/ui-icons_B94A48_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-ui-bootstrap/images/ui-icons_B94A48_256x240.png -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/captcha/fonts/Anorexia.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/captcha/fonts/Anorexia.ttf -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/captcha/image_req.php: -------------------------------------------------------------------------------- 1 | Captcha image'; 5 | 6 | ?> 7 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/captcha/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/captcha/images/button.png -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/captcha/newsession.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/captcha/process.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/captcha/rand.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/css/screen.css: -------------------------------------------------------------------------------- 1 | /********************************** 2 | 3 | Use: Main Screen Import 4 | 5 | ***********************************/ 6 | 7 | @import "reset.css"; 8 | @import "core.css"; 9 | 10 | @import "cmxformTemplate.css"; 11 | @import "cmxform.css"; -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/images/bg.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/images/checked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/images/checked.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/images/cmxform-divider.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/images/cmxform-divider.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/images/cmxform-fieldset.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/images/cmxform-fieldset.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/images/loading.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/images/unchecked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/images/unchecked.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/login/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/login/images/bg.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/login/images/header1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/login/images/header1.jpg -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/login/images/page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/login/images/page.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/login/images/required_star.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/login/images/required_star.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/marketo/images/backRequiredGray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/marketo/images/backRequiredGray.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/marketo/images/back_green-fade.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/marketo/images/back_green-fade.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/marketo/images/back_nav_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/marketo/images/back_nav_blue.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/marketo/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/marketo/images/blank.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/marketo/images/button-submit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/marketo/images/button-submit.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/marketo/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/marketo/images/favicon.ico -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/marketo/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/marketo/images/help.png -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/marketo/images/left-nav-callout-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/marketo/images/left-nav-callout-long.png -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/marketo/images/login-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/marketo/images/login-sprite.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/marketo/images/logo_marketo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/marketo/images/logo_marketo.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/marketo/images/sf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/marketo/images/sf.png -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/marketo/images/step1-24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/marketo/images/step1-24.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/marketo/images/step2-24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/marketo/images/step2-24.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/marketo/images/step3-24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/marketo/images/step3-24.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/marketo/images/tab-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/marketo/images/tab-sprite.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/marketo/images/tab_green.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/marketo/images/tab_green.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/marketo/images/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/marketo/images/time.png -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/marketo/images/toggle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/marketo/images/toggle.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/marketo/images/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/marketo/images/warning.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/milk/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/milk/bg.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/milk/left_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/milk/left_white.png -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/milk/milk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/milk/milk.png -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/milk/right_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/milk/right_white.png -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/requirejs/app.js: -------------------------------------------------------------------------------- 1 | require(["jquery", "../../dist/jquery.validate"], function($) { 2 | 3 | $.validator.setDefaults({ 4 | submitHandler: function() { alert("submitted!"); } 5 | }); 6 | 7 | // validate the comment form when it is submitted 8 | $("#commentForm").validate(); 9 | }); -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/site-demos.css: -------------------------------------------------------------------------------- 1 | #field { margin-left: .5em; float: left; } 2 | #field, label { float: left; font-family: Arial, Helvetica, sans-serif; font-size: small; } 3 | br { clear: both; } 4 | input { border: 1px solid black; margin-bottom: .5em; } 5 | input.error { border: 1px solid red; } 6 | label.error { 7 | background: url('images/unchecked.gif') no-repeat; 8 | padding-left: 16px; 9 | margin-left: .3em; 10 | } 11 | label.valid { 12 | background: url('images/checked.gif') no-repeat; 13 | display: block; 14 | width: 16px; 15 | height: 16px; 16 | } -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/tinymce/themes/simple/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery-validation-1.13.1/demo/tinymce/themes/simple/img/icons.gif -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/demo/tinymce/themes/simple/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.simple',{ 2 | bold_desc:"Bold (Ctrl+B)", 3 | italic_desc:"Italic (Ctrl+I)", 4 | underline_desc:"Underline (Ctrl+U)", 5 | striketrough_desc:"Strikethrough", 6 | bullist_desc:"Unordered list", 7 | numlist_desc:"Ordered list", 8 | undo_desc:"Undo (Ctrl+Z)", 9 | redo_desc:"Redo (Ctrl+Y)", 10 | cleanup_desc:"Cleanup messy code" 11 | }); -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/dist/localization/methods_de.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.1 - 10/14/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d\d?\.\d\d?\.\d\d\d?\d?$/.test(a)},number:function(a,b){return this.optional(b)||/^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(a)}})}); -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/dist/localization/methods_es_CL.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.1 - 10/14/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d\d?\-\d\d?\-\d\d\d?\d?$/.test(a)},number:function(a,b){return this.optional(b)||/^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(a)}})}); -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/dist/localization/methods_fi.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.1 - 10/14/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d{1,2}\.\d{1,2}\.\d{4}$/.test(a)},number:function(a,b){return this.optional(b)||/^-?(?:\d+)(?:,\d+)?$/.test(a)}})}); -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/dist/localization/methods_nl.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Localized default methods for the jQuery validation plugin. 11 | * Locale: NL 12 | */ 13 | $.extend($.validator.methods, { 14 | date: function(value, element) { 15 | return this.optional(element) || /^\d\d?[\.\/\-]\d\d?[\.\/\-]\d\d\d?\d?$/.test(value); 16 | } 17 | }); 18 | 19 | })); -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/dist/localization/methods_nl.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.1 - 10/14/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d\d?[\.\/\-]\d\d?[\.\/\-]\d\d\d?\d?$/.test(a)}})}); -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/dist/localization/methods_pt.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Localized default methods for the jQuery validation plugin. 11 | * Locale: PT_BR 12 | */ 13 | $.extend($.validator.methods, { 14 | date: function(value, element) { 15 | return this.optional(element) || /^\d\d?\/\d\d?\/\d\d\d?\d?$/.test(value); 16 | } 17 | }); 18 | 19 | })); -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/dist/localization/methods_pt.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.1 - 10/14/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d\d?\/\d\d?\/\d\d\d?\d?$/.test(a)}})}); -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/additional/alphanumeric.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod("alphanumeric", function(value, element) { 2 | return this.optional(element) || /^\w+$/i.test(value); 3 | }, "Letters, numbers, and underscores only please"); 4 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/additional/bankorgiroaccountNL.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod("bankorgiroaccountNL", function(value, element) { 2 | return this.optional(element) || 3 | ($.validator.methods.bankaccountNL.call(this, value, element)) || 4 | ($.validator.methods.giroaccountNL.call(this, value, element)); 5 | }, "Please specify a valid bank or giro account number"); 6 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/additional/dateFA.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod("dateFA", function(value, element) { 2 | return this.optional(element) || /^[1-4]\d{3}\/((0?[1-6]\/((3[0-1])|([1-2][0-9])|(0?[1-9])))|((1[0-2]|(0?[7-9]))\/(30|([1-2][0-9])|(0?[1-9]))))$/.test(value); 3 | }, "Please enter a correct date"); 4 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/additional/dateNL.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod("dateNL", function(value, element) { 2 | return this.optional(element) || /^(0?[1-9]|[12]\d|3[01])[\.\/\-](0?[1-9]|1[012])[\.\/\-]([12]\d)?(\d\d)$/.test(value); 3 | }, "Please enter a correct date"); 4 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/additional/extension.js: -------------------------------------------------------------------------------- 1 | // Older "accept" file extension method. Old docs: http://docs.jquery.com/Plugins/Validation/Methods/accept 2 | $.validator.addMethod("extension", function(value, element, param) { 3 | param = typeof param === "string" ? param.replace(/,/g, "|") : "png|jpe?g|gif"; 4 | return this.optional(element) || value.match(new RegExp(".(" + param + ")$", "i")); 5 | }, $.validator.format("Please enter a value with a valid extension.")); 6 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/additional/giroaccountNL.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Dutch giro account numbers (not bank numbers) have max 7 digits 3 | */ 4 | $.validator.addMethod("giroaccountNL", function(value, element) { 5 | return this.optional(element) || /^[0-9]{1,7}$/.test(value); 6 | }, "Please specify a valid giro account number"); 7 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/additional/integer.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod("integer", function(value, element) { 2 | return this.optional(element) || /^-?\d+$/.test(value); 3 | }, "A positive or negative non-decimal number please"); 4 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/additional/ipv4.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod("ipv4", function(value, element) { 2 | return this.optional(element) || /^(25[0-5]|2[0-4]\d|[01]?\d\d?)\.(25[0-5]|2[0-4]\d|[01]?\d\d?)\.(25[0-5]|2[0-4]\d|[01]?\d\d?)\.(25[0-5]|2[0-4]\d|[01]?\d\d?)$/i.test(value); 3 | }, "Please enter a valid IP v4 address."); 4 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/additional/lettersonly.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod("lettersonly", function(value, element) { 2 | return this.optional(element) || /^[a-z]+$/i.test(value); 3 | }, "Letters only please"); 4 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/additional/letterswithbasicpunc.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod("letterswithbasicpunc", function(value, element) { 2 | return this.optional(element) || /^[a-z\-.,()'"\s]+$/i.test(value); 3 | }, "Letters or punctuation only please"); 4 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/additional/mobileNL.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod("mobileNL", function(value, element) { 2 | return this.optional(element) || /^((\+|00(\s|\s?\-\s?)?)31(\s|\s?\-\s?)?(\(0\)[\-\s]?)?|0)6((\s|\s?\-\s?)?[0-9]){8}$/.test(value); 3 | }, "Please specify a valid mobile number"); 4 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/additional/nowhitespace.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod("nowhitespace", function(value, element) { 2 | return this.optional(element) || /^\S+$/i.test(value); 3 | }, "No white space please"); 4 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/additional/phoneNL.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Dutch phone numbers have 10 digits (or 11 and start with +31). 3 | */ 4 | $.validator.addMethod("phoneNL", function(value, element) { 5 | return this.optional(element) || /^((\+|00(\s|\s?\-\s?)?)31(\s|\s?\-\s?)?(\(0\)[\-\s]?)?|0)[1-9]((\s|\s?\-\s?)?[0-9]){8}$/.test(value); 6 | }, "Please specify a valid phone number."); 7 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/additional/postalCodeCA.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Matches a valid Canadian Postal Code 3 | * 4 | * @example jQuery.validator.methods.postalCodeCA( "H0H 0H0", element ) 5 | * @result true 6 | * 7 | * @example jQuery.validator.methods.postalCodeCA( "H0H0H0", element ) 8 | * @result false 9 | * 10 | * @name jQuery.validator.methods.postalCodeCA 11 | * @type Boolean 12 | * @cat Plugins/Validate/Methods 13 | */ 14 | $.validator.addMethod( "postalCodeCA", function( value, element ) { 15 | return this.optional( element ) || /^[ABCEGHJKLMNPRSTVXY]\d[A-Z] \d[A-Z]\d$/.test( value ); 16 | }, "Please specify a valid postal code" ); 17 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/additional/postalcodeBR.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Valida CEPs do brasileiros: 3 | * 4 | * Formatos aceitos: 5 | * 99999-999 6 | * 99.999-999 7 | * 99999999 8 | */ 9 | $.validator.addMethod("postalcodeBR", function(cep_value, element) { 10 | return this.optional(element) || /^\d{2}.\d{3}-\d{3}?$|^\d{5}-?\d{3}?$/.test( cep_value ); 11 | }, "Informe um CEP válido."); 12 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/additional/postalcodeIT.js: -------------------------------------------------------------------------------- 1 | /* Matches Italian postcode (CAP) */ 2 | $.validator.addMethod("postalcodeIT", function(value, element) { 3 | return this.optional(element) || /^\d{5}$/.test(value); 4 | }, "Please specify a valid postal code"); 5 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/additional/postalcodeNL.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod("postalcodeNL", function(value, element) { 2 | return this.optional(element) || /^[1-9][0-9]{3}\s?[a-zA-Z]{2}$/.test(value); 3 | }, "Please specify a valid postal code"); 4 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/additional/postcodeUK.js: -------------------------------------------------------------------------------- 1 | // Matches UK postcode. Does not match to UK Channel Islands that have their own postcodes (non standard UK) 2 | $.validator.addMethod("postcodeUK", function(value, element) { 3 | return this.optional(element) || /^((([A-PR-UWYZ][0-9])|([A-PR-UWYZ][0-9][0-9])|([A-PR-UWYZ][A-HK-Y][0-9])|([A-PR-UWYZ][A-HK-Y][0-9][0-9])|([A-PR-UWYZ][0-9][A-HJKSTUW])|([A-PR-UWYZ][A-HK-Y][0-9][ABEHMNPRVWXY]))\s?([0-9][ABD-HJLNP-UW-Z]{2})|(GIR)\s?(0AA))$/i.test(value); 4 | }, "Please specify a valid UK postcode"); 5 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/additional/strippedminlength.js: -------------------------------------------------------------------------------- 1 | // TODO check if value starts with <, otherwise don't try stripping anything 2 | $.validator.addMethod("strippedminlength", function(value, element, param) { 3 | return $(value).text().length >= param; 4 | }, $.validator.format("Please enter at least {0} characters")); 5 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/additional/time.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod("time", function(value, element) { 2 | return this.optional(element) || /^([01]\d|2[0-3])(:[0-5]\d){1,2}$/.test(value); 3 | }, "Please enter a valid time, between 00:00 and 23:59"); 4 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/additional/time12h.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod("time12h", function(value, element) { 2 | return this.optional(element) || /^((0?[1-9]|1[012])(:[0-5]\d){1,2}(\ ?[AP]M))$/i.test(value); 3 | }, "Please enter a valid time in 12-hour am/pm format"); 4 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/additional/zipcodeUS.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod("zipcodeUS", function(value, element) { 2 | return this.optional(element) || /^\d{5}(-\d{4})?$/.test(value); 3 | }, "The specified US ZIP Code is invalid"); 4 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/additional/ziprange.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod("ziprange", function(value, element) { 2 | return this.optional(element) || /^90[2-5]\d\{2\}-\d{4}$/.test(value); 3 | }, "Your ZIP-code must be in the range 902xx-xxxx to 905xx-xxxx"); 4 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/delegate.js: -------------------------------------------------------------------------------- 1 | // provides delegate(type: String, delegate: Selector, handler: Callback) plugin for easier event delegation 2 | // handler is only called when $(event.target).is(delegate), in the scope of the jquery-object for event.target 3 | 4 | $.extend($.fn, { 5 | validateDelegate: function( delegate, type, handler ) { 6 | return this.bind(type, function( event ) { 7 | var target = $(event.target); 8 | if ( target.is(delegate) ) { 9 | return handler.apply(target, arguments); 10 | } 11 | }); 12 | } 13 | }); 14 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/localization/methods_de.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Localized default methods for the jQuery validation plugin. 3 | * Locale: DE 4 | */ 5 | $.extend($.validator.methods, { 6 | date: function(value, element) { 7 | return this.optional(element) || /^\d\d?\.\d\d?\.\d\d\d?\d?$/.test(value); 8 | }, 9 | number: function(value, element) { 10 | return this.optional(element) || /^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(value); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/localization/methods_es_CL.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Localized default methods for the jQuery validation plugin. 3 | * Locale: ES_CL 4 | */ 5 | $.extend($.validator.methods, { 6 | date: function(value, element) { 7 | return this.optional(element) || /^\d\d?\-\d\d?\-\d\d\d?\d?$/.test(value); 8 | }, 9 | number: function(value, element) { 10 | return this.optional(element) || /^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(value); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/localization/methods_fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Localized default methods for the jQuery validation plugin. 3 | * Locale: FI 4 | */ 5 | $.extend($.validator.methods, { 6 | date: function(value, element) { 7 | return this.optional(element) || /^\d{1,2}\.\d{1,2}\.\d{4}$/.test(value); 8 | }, 9 | number: function(value, element) { 10 | return this.optional(element) || /^-?(?:\d+)(?:,\d+)?$/.test(value); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/localization/methods_nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Localized default methods for the jQuery validation plugin. 3 | * Locale: NL 4 | */ 5 | $.extend($.validator.methods, { 6 | date: function(value, element) { 7 | return this.optional(element) || /^\d\d?[\.\/\-]\d\d?[\.\/\-]\d\d\d?\d?$/.test(value); 8 | } 9 | }); 10 | -------------------------------------------------------------------------------- /plugins/jquery-validation-1.13.1/src/localization/methods_pt.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Localized default methods for the jQuery validation plugin. 3 | * Locale: PT_BR 4 | */ 5 | $.extend($.validator.methods, { 6 | date: function(value, element) { 7 | return this.optional(element) || /^\d\d?\/\d\d?\/\d\d\d?\d?$/.test(value); 8 | } 9 | }); 10 | -------------------------------------------------------------------------------- /plugins/jquery.msgbox/.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /plugins/jquery.msgbox/.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # ========================= 18 | # Operating System Files 19 | # ========================= 20 | 21 | # OSX 22 | # ========================= 23 | 24 | .DS_Store 25 | .AppleDouble 26 | .LSOverride 27 | 28 | # Icon must ends with two \r. 29 | Icon 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear on external disk 35 | .Spotlight-V100 36 | .Trashes 37 | -------------------------------------------------------------------------------- /plugins/jquery.msgbox/examples/images/sky1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/examples/images/sky1.jpg -------------------------------------------------------------------------------- /plugins/jquery.msgbox/examples/images/sky2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/examples/images/sky2.jpg -------------------------------------------------------------------------------- /plugins/jquery.msgbox/examples/images/sky3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/examples/images/sky3.jpg -------------------------------------------------------------------------------- /plugins/jquery.msgbox/examples/images/sky4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/examples/images/sky4.jpg -------------------------------------------------------------------------------- /plugins/jquery.msgbox/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/logo.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/black/img/confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/black/img/confirm.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/black/img/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/black/img/controls.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/black/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/black/img/error.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/black/img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/black/img/info.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/black/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/black/img/loading.gif -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/black/img/prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/black/img/prompt.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/black/img/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/black/img/success.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/black/img/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/black/img/warning.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/bootstrap/img/confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/bootstrap/img/confirm.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/bootstrap/img/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/bootstrap/img/controls.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/bootstrap/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/bootstrap/img/error.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/bootstrap/img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/bootstrap/img/info.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/bootstrap/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/bootstrap/img/loading.gif -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/bootstrap/img/prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/bootstrap/img/prompt.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/bootstrap/img/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/bootstrap/img/success.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/bootstrap/img/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/bootstrap/img/warning.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/facebook/img/confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/facebook/img/confirm.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/facebook/img/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/facebook/img/controls.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/facebook/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/facebook/img/error.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/facebook/img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/facebook/img/info.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/facebook/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/facebook/img/loading.gif -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/facebook/img/prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/facebook/img/prompt.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/facebook/img/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/facebook/img/success.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/facebook/img/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/facebook/img/warning.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/jqueryui/img/confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/jqueryui/img/confirm.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/jqueryui/img/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/jqueryui/img/controls.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/jqueryui/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/jqueryui/img/error.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/jqueryui/img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/jqueryui/img/info.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/jqueryui/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/jqueryui/img/loading.gif -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/jqueryui/img/prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/jqueryui/img/prompt.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/jqueryui/img/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/jqueryui/img/success.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/jqueryui/img/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/jqueryui/img/warning.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/mac/img/confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/mac/img/confirm.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/mac/img/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/mac/img/controls.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/mac/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/mac/img/error.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/mac/img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/mac/img/info.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/mac/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/mac/img/loading.gif -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/mac/img/prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/mac/img/prompt.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/mac/img/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/mac/img/success.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/mac/img/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/mac/img/warning.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/metro/img/confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/metro/img/confirm.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/metro/img/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/metro/img/controls.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/metro/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/metro/img/error.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/metro/img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/metro/img/info.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/metro/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/metro/img/loading.gif -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/metro/img/prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/metro/img/prompt.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/metro/img/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/metro/img/success.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/metro/img/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/metro/img/warning.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/naked/img/confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/naked/img/confirm.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/naked/img/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/naked/img/controls.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/naked/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/naked/img/error.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/naked/img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/naked/img/info.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/naked/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/naked/img/loading.gif -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/naked/img/prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/naked/img/prompt.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/naked/img/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/naked/img/success.png -------------------------------------------------------------------------------- /plugins/jquery.msgbox/themes/naked/img/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jquery.msgbox/themes/naked/img/warning.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/dev/build/JTableBuilder-source.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/dev/build/JTableBuilder-source.zip -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/dev/build/README.md: -------------------------------------------------------------------------------- 1 | jtable builder 2 | ====== 3 | 4 | Although you can manually merge all javascript files in order in jquery.jtable.build.txt file, you can use this tool to merge all javascript files and build jquery.jtable.js. Just run jTableBuilder-build.bat. 5 | 6 | NOTE: It's a C# (.NET 4.0) application. 7 | -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/dev/build/jTableBuilder-build.bat: -------------------------------------------------------------------------------- 1 | jTableBuilder.exe ..\jquery.jtable.build.txt -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/dev/build/jTableBuilder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/dev/build/jTableBuilder.exe -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/dev/jquery.jtable.build.txt: -------------------------------------------------------------------------------- 1 | create ..\jquery.jtable.js 2 | add jquery.jtable.header.txt 3 | add jquery.jtable.core.js 4 | add jquery.jtable.utils.js 5 | add jquery.jtable.forms.js 6 | add jquery.jtable.creation.js 7 | add jquery.jtable.editing.js 8 | add jquery.jtable.deletion.js 9 | add jquery.jtable.selecting.js 10 | add jquery.jtable.paging.js 11 | add jquery.jtable.sorting.js 12 | add jquery.jtable.dynamiccolumns.js 13 | add jquery.jtable.masterchild.js 14 | -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/extensions/jquery.jtable.aspnetpagemethods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/extensions/jquery.jtable.aspnetpagemethods.min.js -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/basic/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/basic/close.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/basic/column-asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/basic/column-asc.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/basic/column-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/basic/column-desc.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/basic/column-sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/basic/column-sortable.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/basic/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/basic/delete.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/basic/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/basic/edit.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/jqueryui/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/jqueryui/add.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/jqueryui/bg-thead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/jqueryui/bg-thead.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/jqueryui/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/jqueryui/close.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/jqueryui/column-asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/jqueryui/column-asc.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/jqueryui/column-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/jqueryui/column-desc.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/jqueryui/column-sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/jqueryui/column-sortable.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/jqueryui/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/jqueryui/delete.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/jqueryui/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/jqueryui/edit.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/jqueryui/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/jqueryui/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/lightcolor/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/lightcolor/add.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/lightcolor/bg-thead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/lightcolor/bg-thead.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/lightcolor/blue/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/lightcolor/blue/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/lightcolor/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/lightcolor/close.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/lightcolor/column-asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/lightcolor/column-asc.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/lightcolor/column-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/lightcolor/column-desc.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/lightcolor/column-sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/lightcolor/column-sortable.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/lightcolor/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/lightcolor/delete.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/lightcolor/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/lightcolor/edit.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/lightcolor/gray/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/lightcolor/gray/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/lightcolor/green/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/lightcolor/green/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/lightcolor/orange/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/lightcolor/orange/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/lightcolor/red/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/lightcolor/red/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/metro/add.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/blue/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Blue 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder: 'blue'; 9 | @main-theme-color: #2D89EF; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/blue/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/metro/blue/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/brown/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Brown 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'brown'; 9 | @main-theme-color: #835a2c; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/brown/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/metro/brown/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/metro/close.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/column-asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/metro/column-asc.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/column-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/metro/column-desc.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/column-sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/metro/column-sortable.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/crimson/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Crimson 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'crimson'; 9 | @main-theme-color: #c30000; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/crimson/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/metro/crimson/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/darkgray/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Dark gray 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'darkgray'; 9 | @main-theme-color: #454545; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/darkgray/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/metro/darkgray/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/darkorange/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Dark orange 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'darkorange'; 9 | @main-theme-color: #da532c; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/darkorange/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/metro/darkorange/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/metro/delete.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/metro/edit.png -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/green/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Green 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'green'; 9 | @main-theme-color: #00a300; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/green/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/metro/green/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/lightgray/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Light gray 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'lightgray'; 9 | @main-theme-color: #707070; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/lightgray/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/metro/lightgray/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/pink/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Pink 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'pink'; 9 | @main-theme-color: #9f00a7; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/pink/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/metro/pink/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/purple/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Purple 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'purple'; 9 | @main-theme-color: #603cba; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/purple/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/metro/purple/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/red/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Red 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'red'; 9 | @main-theme-color: #e51400; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /plugins/jtable.2.3.1/lib/themes/metro/red/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.3.1/lib/themes/metro/red/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/extensions/jquery.jtable.aspnetpagemethods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/extensions/jquery.jtable.aspnetpagemethods.min.js -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/basic/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/basic/close.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/basic/column-asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/basic/column-asc.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/basic/column-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/basic/column-desc.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/basic/column-sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/basic/column-sortable.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/basic/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/basic/delete.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/basic/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/basic/edit.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/jqueryui/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/jqueryui/add.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/jqueryui/bg-thead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/jqueryui/bg-thead.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/jqueryui/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/jqueryui/close.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/jqueryui/column-asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/jqueryui/column-asc.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/jqueryui/column-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/jqueryui/column-desc.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/jqueryui/column-sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/jqueryui/column-sortable.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/jqueryui/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/jqueryui/delete.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/jqueryui/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/jqueryui/edit.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/jqueryui/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/jqueryui/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/lightcolor/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/lightcolor/add.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/lightcolor/bg-thead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/lightcolor/bg-thead.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/lightcolor/blue/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/lightcolor/blue/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/lightcolor/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/lightcolor/close.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/lightcolor/column-asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/lightcolor/column-asc.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/lightcolor/column-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/lightcolor/column-desc.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/lightcolor/column-sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/lightcolor/column-sortable.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/lightcolor/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/lightcolor/delete.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/lightcolor/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/lightcolor/edit.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/lightcolor/facebook/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Blue 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder: 'blue'; 9 | @main-theme-color: #2D89EF; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/lightcolor/facebook/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/lightcolor/facebook/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/lightcolor/facebook/lucidagrande-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/lightcolor/facebook/lucidagrande-bold.woff -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/lightcolor/facebook/lucidagrande.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/lightcolor/facebook/lucidagrande.woff -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/lightcolor/gray/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/lightcolor/gray/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/lightcolor/green/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/lightcolor/green/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/lightcolor/orange/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/lightcolor/orange/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/lightcolor/red/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/lightcolor/red/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/metro/add.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/blue/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Blue 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder: 'blue'; 9 | @main-theme-color: #2D89EF; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/blue/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/metro/blue/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/brown/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Brown 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'brown'; 9 | @main-theme-color: #835a2c; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/brown/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/metro/brown/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/metro/close.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/column-asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/metro/column-asc.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/column-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/metro/column-desc.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/column-sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/metro/column-sortable.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/crimson/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Crimson 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'crimson'; 9 | @main-theme-color: #c30000; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/crimson/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/metro/crimson/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/darkgray/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Dark gray 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'darkgray'; 9 | @main-theme-color: #454545; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/darkgray/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/metro/darkgray/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/darkorange/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Dark orange 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'darkorange'; 9 | @main-theme-color: #da532c; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/darkorange/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/metro/darkorange/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/metro/delete.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/metro/edit.png -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/facebook/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Blue 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder: 'blue'; 9 | @main-theme-color: #2D89EF; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/facebook/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/metro/facebook/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/facebook/lucidagrande-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/metro/facebook/lucidagrande-bold.woff -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/facebook/lucidagrande.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/metro/facebook/lucidagrande.woff -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/green/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Green 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'green'; 9 | @main-theme-color: #00a300; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/green/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/metro/green/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/lightgray/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Light gray 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'lightgray'; 9 | @main-theme-color: #707070; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/lightgray/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/metro/lightgray/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/pink/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Pink 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'pink'; 9 | @main-theme-color: #9f00a7; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/pink/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/metro/pink/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/purple/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Purple 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'purple'; 9 | @main-theme-color: #603cba; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/purple/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/metro/purple/loading.gif -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/red/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Red 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'red'; 9 | @main-theme-color: #e51400; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /plugins/jtable.2.4.0/themes/metro/red/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/plugins/jtable.2.4.0/themes/metro/red/loading.gif -------------------------------------------------------------------------------- /script/custom.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function ($) { 2 | $( "#Tanggal" ).datepicker({ 3 | changeMonth: true, 4 | changeYear: true, 5 | dateFormat:"yy-mm-dd" 6 | }); 7 | $(".Tanggal").each(function(index, element) { 8 | $(this).datepicker({ 9 | changeMonth: true, 10 | changeYear: true, 11 | dateFormat:"yy-mm-dd" 12 | }); 13 | }); 14 | var _alert = window.alert; 15 | window.alert = function (msg) { 16 | $.msgbox({ 17 | lang:'id_ID', 18 | type:'alert', 19 | content: msg 20 | }); 21 | }; 22 | }); -------------------------------------------------------------------------------- /script/main.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | $("[action]").click(function(){ 3 | var action = $(this).attr("action"); 4 | var isajax = $(this).attr("ajax"); 5 | if(!isajax){ 6 | console.log("sss"); 7 | } 8 | }); 9 | }); -------------------------------------------------------------------------------- /ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/ss.png -------------------------------------------------------------------------------- /style/darkgray/L.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/darkgray/L.gif -------------------------------------------------------------------------------- /style/darkgray/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/darkgray/Thumbs.db -------------------------------------------------------------------------------- /style/darkgray/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/darkgray/bg.gif -------------------------------------------------------------------------------- /style/darkgray/bg_sled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/darkgray/bg_sled.gif -------------------------------------------------------------------------------- /style/darkgray/horizon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/darkgray/horizon.gif -------------------------------------------------------------------------------- /style/darkgray/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style/darkgray/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/darkgray/loading.gif -------------------------------------------------------------------------------- /style/darkgray/mid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/darkgray/mid.gif -------------------------------------------------------------------------------- /style/darkgray/pm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/darkgray/pm.gif -------------------------------------------------------------------------------- /style/darkgray/r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/darkgray/r.gif -------------------------------------------------------------------------------- /style/darkgray/v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/darkgray/v.gif -------------------------------------------------------------------------------- /style/darkgray/v.psb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/darkgray/v.psb -------------------------------------------------------------------------------- /style/darkgray/vertical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/darkgray/vertical.gif -------------------------------------------------------------------------------- /style/default/L.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/default/L.gif -------------------------------------------------------------------------------- /style/default/horizon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/default/horizon.gif -------------------------------------------------------------------------------- /style/default/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style/default/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/default/loading.gif -------------------------------------------------------------------------------- /style/default/mid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/default/mid.gif -------------------------------------------------------------------------------- /style/default/pm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/default/pm.gif -------------------------------------------------------------------------------- /style/default/r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/default/r.gif -------------------------------------------------------------------------------- /style/default/v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/default/v.gif -------------------------------------------------------------------------------- /style/default/vertical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/default/vertical.gif -------------------------------------------------------------------------------- /style/gray/L.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/gray/L.gif -------------------------------------------------------------------------------- /style/gray/bg_sled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/gray/bg_sled.gif -------------------------------------------------------------------------------- /style/gray/horizon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/gray/horizon.gif -------------------------------------------------------------------------------- /style/gray/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style/gray/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/gray/loading.gif -------------------------------------------------------------------------------- /style/gray/mid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/gray/mid.gif -------------------------------------------------------------------------------- /style/gray/pm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/gray/pm.gif -------------------------------------------------------------------------------- /style/gray/r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/gray/r.gif -------------------------------------------------------------------------------- /style/gray/v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/gray/v.gif -------------------------------------------------------------------------------- /style/gray/vertical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/gray/vertical.gif -------------------------------------------------------------------------------- /style/graygreen/L.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/graygreen/L.gif -------------------------------------------------------------------------------- /style/graygreen/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/graygreen/bg.gif -------------------------------------------------------------------------------- /style/graygreen/horizon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/graygreen/horizon.gif -------------------------------------------------------------------------------- /style/graygreen/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style/graygreen/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/graygreen/loading.gif -------------------------------------------------------------------------------- /style/graygreen/mid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/graygreen/mid.gif -------------------------------------------------------------------------------- /style/graygreen/pm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/graygreen/pm.gif -------------------------------------------------------------------------------- /style/graygreen/r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/graygreen/r.gif -------------------------------------------------------------------------------- /style/graygreen/v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/graygreen/v.gif -------------------------------------------------------------------------------- /style/graygreen/vertical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/graygreen/vertical.gif -------------------------------------------------------------------------------- /style/green/L.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/green/L.gif -------------------------------------------------------------------------------- /style/green/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/green/bg.gif -------------------------------------------------------------------------------- /style/green/horizon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/green/horizon.gif -------------------------------------------------------------------------------- /style/green/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style/green/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/green/loading.gif -------------------------------------------------------------------------------- /style/green/mid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/green/mid.gif -------------------------------------------------------------------------------- /style/green/pm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/green/pm.gif -------------------------------------------------------------------------------- /style/green/r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/green/r.gif -------------------------------------------------------------------------------- /style/green/v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/green/v.gif -------------------------------------------------------------------------------- /style/green/vertical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/green/vertical.gif -------------------------------------------------------------------------------- /style/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /style/pink/L.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/pink/L.gif -------------------------------------------------------------------------------- /style/pink/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/pink/Thumbs.db -------------------------------------------------------------------------------- /style/pink/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/pink/bg.gif -------------------------------------------------------------------------------- /style/pink/bg_sled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/pink/bg_sled.gif -------------------------------------------------------------------------------- /style/pink/horizon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/pink/horizon.gif -------------------------------------------------------------------------------- /style/pink/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style/pink/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/pink/loading.gif -------------------------------------------------------------------------------- /style/pink/mid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/pink/mid.gif -------------------------------------------------------------------------------- /style/pink/pm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/pink/pm.gif -------------------------------------------------------------------------------- /style/pink/r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/pink/r.gif -------------------------------------------------------------------------------- /style/pink/v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/pink/v.gif -------------------------------------------------------------------------------- /style/pink/v.psb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/pink/v.psb -------------------------------------------------------------------------------- /style/pink/vertical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/pink/vertical.gif -------------------------------------------------------------------------------- /style/vista/bg_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/vista/bg_over.gif -------------------------------------------------------------------------------- /style/vista/bg_selected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/vista/bg_selected.gif -------------------------------------------------------------------------------- /style/vista/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style/vista/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/vista/loading.gif -------------------------------------------------------------------------------- /style/vista/pm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/style/vista/pm.gif -------------------------------------------------------------------------------- /system/db/sql.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/js.php: -------------------------------------------------------------------------------- 1 | base = \NC\base::getInstance(); 7 | } 8 | function __toString(){ 9 | Header("Content-Type: application/x-javascript; charset=UTF-8"); 10 | ?> 11 | $(function() { 12 | var base = "base->baseurl;?>"; 13 | $("a [action]").click(function(){ 14 | var action = $(this).attr("action"); 15 | var isajax = $(this).attr("ajax"); 16 | if(!isajax){ 17 | window.location.replace(base + "/" + action); 18 | }else{ 19 | 20 | } 21 | }); 22 | }); 23 | -------------------------------------------------------------------------------- /system/model.php: -------------------------------------------------------------------------------- 1 | config = $base->config; 8 | } 9 | } 10 | 11 | ?> -------------------------------------------------------------------------------- /system/session.php: -------------------------------------------------------------------------------- 1 | base = \NC\base::getInstance(); 8 | } 9 | function setSession($name,$val){ 10 | setcookie($name, $cookie_val, time() + (86400 * 30), "/"); 11 | } 12 | function getSession($name){ 13 | if(!isset($_COOKIE[$name])) { 14 | return false; 15 | } else { 16 | return $_COOKIE[$name]; 17 | } 18 | } 19 | 20 | 21 | } 22 | 23 | ?> -------------------------------------------------------------------------------- /template/sb-admin-2/css/plugins/metisMenu/metisMenu.min.css: -------------------------------------------------------------------------------- 1 | .arrow{float:right}.glyphicon.arrow:before{content:"\e079"}.active>a>.glyphicon.arrow:before{content:"\e114"}.fa.arrow:before{content:"\f104"}.active>a>.fa.arrow:before{content:"\f107"}.plus-times{float:right}.fa.plus-times:before{content:"\f067"}.active>a>.fa.plus-times{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.plus-minus{float:right}.fa.plus-minus:before{content:"\f067"}.active>a>.fa.plus-minus:before{content:"\f068"} -------------------------------------------------------------------------------- /template/sb-admin-2/css/plugins/morris.css: -------------------------------------------------------------------------------- 1 | .morris-hover{position:absolute;z-index:1000}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#666;background:rgba(255,255,255,0.8);border:solid 2px rgba(230,230,230,0.8);font-family:sans-serif;font-size:12px;text-align:center}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0} 2 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0} 3 | -------------------------------------------------------------------------------- /template/sb-admin-2/font-awesome-4.1.0/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/template/sb-admin-2/font-awesome-4.1.0/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /template/sb-admin-2/font-awesome-4.1.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/template/sb-admin-2/font-awesome-4.1.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /template/sb-admin-2/font-awesome-4.1.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/template/sb-admin-2/font-awesome-4.1.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /template/sb-admin-2/font-awesome-4.1.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/template/sb-admin-2/font-awesome-4.1.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /template/sb-admin-2/font-awesome-4.1.0/less/bordered-pulled.less: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /template/sb-admin-2/font-awesome-4.1.0/less/core.less: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /template/sb-admin-2/font-awesome-4.1.0/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /template/sb-admin-2/font-awesome-4.1.0/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.1.0 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.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "spinning.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | -------------------------------------------------------------------------------- /template/sb-admin-2/font-awesome-4.1.0/less/larger.less: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /template/sb-admin-2/font-awesome-4.1.0/less/list.less: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /template/sb-admin-2/font-awesome-4.1.0/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 | -------------------------------------------------------------------------------- /template/sb-admin-2/font-awesome-4.1.0/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 | -------------------------------------------------------------------------------- /template/sb-admin-2/font-awesome-4.1.0/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 | -------------------------------------------------------------------------------- /template/sb-admin-2/font-awesome-4.1.0/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 | -------------------------------------------------------------------------------- /template/sb-admin-2/font-awesome-4.1.0/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /template/sb-admin-2/font-awesome-4.1.0/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 | -------------------------------------------------------------------------------- /template/sb-admin-2/font-awesome-4.1.0/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 | -------------------------------------------------------------------------------- /template/sb-admin-2/font-awesome-4.1.0/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 | -------------------------------------------------------------------------------- /template/sb-admin-2/font-awesome-4.1.0/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 | -------------------------------------------------------------------------------- /template/sb-admin-2/font-awesome-4.1.0/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.1.0 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 | -------------------------------------------------------------------------------- /template/sb-admin-2/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/template/sb-admin-2/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /template/sb-admin-2/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/template/sb-admin-2/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /template/sb-admin-2/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubuntu/bpjs-framework/463477686d6431b6ca324051d93834b15d292f21/template/sb-admin-2/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /template/sb-admin-2/less/mixins.less: -------------------------------------------------------------------------------- 1 | // Mixins 2 | -------------------------------------------------------------------------------- /template/sb-admin-2/less/variables.less: -------------------------------------------------------------------------------- 1 | // Variables 2 | 3 | @gray-darker: lighten(#000, 13.5%); 4 | @gray-dark: lighten(#000, 20%); 5 | @gray: lighten(#000, 33.5%); 6 | @gray-light: lighten(#000, 60%); 7 | @gray-lighter: lighten(#000, 93.5%); 8 | @gray-lightest: lighten(#000, 97.25%); 9 | @brand-primary: #428bca; 10 | @brand-success: #5cb85c; 11 | @brand-info: #5bc0de; 12 | @brand-warning: #f0ad4e; 13 | @brand-danger: #d9534f; 14 | 15 | -------------------------------------------------------------------------------- /views/layout/raw.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | meta;?> 6 | <?=$this->title;?> 7 | css;?> 8 | 28 | js; ?> 29 | 30 | 31 | 32 | 33 | 34 | content;?> 35 | 36 | 37 | -------------------------------------------------------------------------------- /views/layout/source.php: -------------------------------------------------------------------------------- 1 | content;?> -------------------------------------------------------------------------------- /views/site/group.php: -------------------------------------------------------------------------------- 1 | pagetitle="Data Group"; 3 | $db = $this->base->db; 4 | $post = $this->base->posts; 5 | $app = new \NC\asset\App; 6 | $table = new \NC\system\Table; 7 | $table->toolbarsearch = true; 8 | $table->setTitle("Data Group"); 9 | $table->showkey=false; 10 | $table->setTable($db,"`group`","id"); 11 | $table->trigger(); 12 | ?> 13 | 14 | 24 | gethtml();?> -------------------------------------------------------------------------------- /views/site/index.php: -------------------------------------------------------------------------------- 1 | pagetitle="Home"; 3 | 4 | ?> -------------------------------------------------------------------------------- /views/site/listmenu.php: -------------------------------------------------------------------------------- 1 | pagetitle="List Menu"; 3 | $db = $this->base->db; 4 | $table = new \NC\system\Table; 5 | $table->toolbarsearch = true; 6 | $table->setTitle("List Menu"); 7 | $table->showkey=false; 8 | $table->exc=array("nnnn","ordering","published","parent"); 9 | $table->setTable($db,"menu","id"); 10 | $table->trigger(); 11 | ?> 12 | 13 | 23 | gethtml();?> -------------------------------------------------------------------------------- /views/site/table.php: -------------------------------------------------------------------------------- 1 | base->db; 3 | $post = $this->base->posts; 4 | $this->pagetitle=$post->tbl; 5 | $table = new \NC\system\Table; 6 | $table->toolbarsearch = true; 7 | $table->setTitle("Data ".$post->tbl); 8 | $table->setTable($db,$post->tbl,$post->pkey); 9 | $table->trigger(); 10 | ?> 11 | 12 | 18 | gethtml();?> --------------------------------------------------------------------------------