├── .gitattributes
├── .gitignore
├── README.md
├── dubbo_consumer
├── pom.xml
└── src
│ └── main
│ ├── java
│ └── com
│ │ └── itheima
│ │ ├── controller
│ │ └── HelloController.java
│ │ └── service
│ │ └── HelloService.java
│ ├── resources
│ └── applicationContext-web.xml
│ └── webapp
│ ├── WEB-INF
│ └── web.xml
│ └── index.jsp
├── dubbo_provider
├── pom.xml
└── src
│ └── main
│ ├── java
│ └── com
│ │ └── itheima
│ │ └── service
│ │ ├── HelloService.java
│ │ └── impl
│ │ └── HelloServiceImpl.java
│ ├── resources
│ ├── applicationContext-service.xml
│ └── log4j.properties
│ └── webapp
│ ├── WEB-INF
│ └── web.xml
│ └── index.jsp
├── health_common
├── pom.xml
└── src
│ ├── main
│ └── java
│ │ └── com
│ │ └── itheima
│ │ ├── App.java
│ │ └── health
│ │ ├── constant
│ │ ├── MessageConstant.java
│ │ ├── RedisConstant.java
│ │ └── RedisMessageConstant.java
│ │ ├── entity
│ │ ├── PageResult.java
│ │ └── Result.java
│ │ └── utils
│ │ ├── DateUtils.java
│ │ ├── MD5Utils.java
│ │ ├── POIUtils.java
│ │ ├── QiniuUtils.java
│ │ ├── SMSUtils.java
│ │ └── ValidateCodeUtils.java
│ └── test
│ └── java
│ └── com
│ └── itheima
│ ├── AppTest.java
│ ├── SmsMain.java
│ ├── TestPoi.java
│ └── TestQiniu.java
├── health_dao
├── pom.xml
└── src
│ ├── main
│ ├── java
│ │ └── com
│ │ │ └── itheima
│ │ │ ├── App.java
│ │ │ └── health
│ │ │ └── dao
│ │ │ ├── CheckGroupDao.java
│ │ │ ├── CheckItemDao.java
│ │ │ ├── MemberDao.java
│ │ │ ├── OrderDao.java
│ │ │ ├── OrderSettingDao.java
│ │ │ ├── PermissionDao.java
│ │ │ ├── RoleDao.java
│ │ │ ├── SetmealDao.java
│ │ │ └── UserDao.java
│ └── resources
│ │ ├── SqlMapConfig.xml
│ │ ├── applicationContext-dao.xml
│ │ ├── com
│ │ └── itheima
│ │ │ └── health
│ │ │ └── dao
│ │ │ ├── CheckGroupDao.xml
│ │ │ ├── CheckItemDao.xml
│ │ │ ├── MemberDao.xml
│ │ │ ├── OrderDao.xml
│ │ │ ├── OrderSettingDao.xml
│ │ │ ├── PermissionDao.xml
│ │ │ ├── RoleDao.xml
│ │ │ ├── SetmealDao.xml
│ │ │ └── UserDao.xml
│ │ └── log4j.properties
│ └── test
│ └── java
│ └── com
│ └── itheima
│ └── AppTest.java
├── health_interface
├── pom.xml
└── src
│ ├── main
│ └── java
│ │ └── com
│ │ └── itheima
│ │ ├── App.java
│ │ └── health
│ │ └── service
│ │ ├── CheckGroupService.java
│ │ ├── CheckItemService.java
│ │ ├── MemberService.java
│ │ ├── OrderService.java
│ │ ├── OrderSettingService.java
│ │ ├── ReportService.java
│ │ ├── SetmealService.java
│ │ └── UserService.java
│ └── test
│ └── java
│ └── com
│ └── itheima
│ └── AppTest.java
├── health_jobs
├── pom.xml
└── src
│ └── main
│ ├── java
│ └── com
│ │ └── itheima
│ │ └── health
│ │ └── job
│ │ └── ClearImgJob.java
│ ├── resources
│ ├── applicationContext-jobs.xml
│ ├── applicationContext-redis.xml
│ └── log4j.properties
│ └── webapp
│ ├── WEB-INF
│ └── web.xml
│ └── index.jsp
├── health_pojo
├── pom.xml
└── src
│ ├── main
│ └── java
│ │ └── com
│ │ └── itheima
│ │ ├── App.java
│ │ └── health
│ │ ├── entity
│ │ └── QueryPageBean.java
│ │ └── pojo
│ │ ├── CheckGroup.java
│ │ ├── CheckItem.java
│ │ ├── Member.java
│ │ ├── Menu.java
│ │ ├── Order.java
│ │ ├── OrderSetting.java
│ │ ├── Permission.java
│ │ ├── Role.java
│ │ ├── Setmeal.java
│ │ └── User.java
│ └── test
│ └── java
│ └── com
│ └── itheima
│ └── AppTest.java
├── health_service
├── pom.xml
└── src
│ └── main
│ ├── java
│ └── com
│ │ └── itheima
│ │ └── health
│ │ └── service
│ │ ├── CheckGroupServiceImpl.java
│ │ ├── CheckItemServiceImpl.java
│ │ ├── MemberServiceImpl.java
│ │ ├── OrderServiceImpl.java
│ │ ├── OrderSettingServiceImpl.java
│ │ ├── ReportServiceImpl.java
│ │ ├── SetmealServiceImpl.java
│ │ └── UserServiceImpl.java
│ ├── resources
│ ├── applicationContext-redis.xml
│ ├── applicationContext-service.xml
│ ├── applicationContext-tx.xml
│ └── log4j.properties
│ └── webapp
│ ├── WEB-INF
│ └── web.xml
│ └── index.jsp
├── health_web
├── pom.xml
└── src
│ └── main
│ ├── java
│ └── com
│ │ └── itheima
│ │ └── health
│ │ ├── controller
│ │ ├── CheckGroupController.java
│ │ ├── CheckItemController.java
│ │ ├── OrderSettingController.java
│ │ ├── ReportController.java
│ │ ├── SetmealController.java
│ │ └── UserController.java
│ │ └── security
│ │ └── SpringSecurityUserService.java
│ ├── resources
│ ├── log4j.properties
│ ├── spring-redis.xml
│ ├── spring-security.xml
│ └── springmvc.xml
│ └── webapp
│ ├── WEB-INF
│ └── web.xml
│ ├── css
│ ├── login.css
│ ├── orderset.css
│ └── style.css
│ ├── echartsDemo.html
│ ├── img
│ ├── american-express.png
│ ├── avatar.png
│ ├── avatar04.png
│ ├── avatar2.png
│ ├── avatar3.png
│ ├── avatar5.png
│ ├── bg.jpg
│ ├── boxed-bg.jpg
│ ├── boxed-bg.png
│ ├── cirrus.png
│ ├── icons.png
│ ├── loginLogo.png
│ ├── logingBg.png
│ ├── logo.png
│ ├── mastercard.png
│ ├── mestro.png
│ ├── minilogo.png
│ ├── paypal.png
│ ├── paypal2.png
│ ├── photo1.png
│ ├── photo2.png
│ ├── photo3.jpg
│ ├── photo4.jpg
│ ├── pwd.png
│ ├── user.png
│ ├── user1-128x128.jpg
│ ├── user2-160x160.jpg
│ ├── user3-128x128.jpg
│ ├── user4-128x128.jpg
│ ├── user5-128x128.jpg
│ ├── user6-128x128.jpg
│ ├── user7-128x128.jpg
│ ├── user8-128x128.jpg
│ └── visa.png
│ ├── index.jsp
│ ├── js
│ ├── axios-0.18.0.js
│ ├── echarts.js
│ ├── jquery.min.js
│ └── vue.js
│ ├── login.html
│ ├── pages
│ ├── checkgroup.html
│ ├── checkitem.html
│ ├── main.html
│ ├── ordersetting.html
│ ├── report_business.html
│ ├── report_member.html
│ ├── report_setmeal.html
│ └── setmeal.html
│ ├── plugins
│ ├── elementui
│ │ ├── fonts
│ │ │ └── element-icons.woff
│ │ ├── index.css
│ │ └── index.js
│ └── font-awesome
│ │ ├── css
│ │ ├── font-awesome.css
│ │ └── font-awesome.min.css
│ │ └── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ └── fontawesome-webfont.woff2
│ └── template
│ ├── ordersetting_template.xlsx
│ └── report_template.xlsx
├── healthmobile_web
├── pom.xml
└── src
│ └── main
│ ├── java
│ └── com
│ │ └── itheima
│ │ └── health
│ │ └── controller
│ │ ├── LoginController.java
│ │ ├── OrderController.java
│ │ ├── SetmealController.java
│ │ └── ValidateCodeController.java
│ ├── resources
│ ├── log4j.properties
│ ├── redis.properties
│ ├── spring-jedis.xml
│ └── springmvc.xml
│ └── webapp
│ ├── WEB-INF
│ └── web.xml
│ ├── css
│ ├── page-health-index.css
│ ├── page-health-information.css
│ ├── page-health-informationDetail.css
│ ├── page-health-intervention.css
│ ├── page-health-login.css
│ ├── page-health-order.css
│ ├── page-health-orderDetail.css
│ ├── page-health-orderInfo.css
│ ├── page-health-orderNotice.css
│ ├── page-health-record.css
│ ├── page-health-recordDetail.css
│ ├── page-health-report.css
│ ├── page-health-risk.css
│ ├── page-health-riskPageComplete.css
│ ├── page-health-riskQuestion.css
│ ├── page-index.css
│ ├── widget-article.css
│ ├── widget-bg-link.css
│ ├── widget-card.css
│ ├── widget-carousel.css
│ ├── widget-footer.css
│ ├── widget-form-info.css
│ ├── widget-header.css
│ ├── widget-ind-cont.css
│ ├── widget-ind-group.css
│ ├── widget-ind-nav.css
│ ├── widget-list-column1.css
│ ├── widget-list-column2.css
│ ├── widget-list-content.css
│ ├── widget-list-row3.css
│ ├── widget-login.css
│ ├── widget-news-list.css
│ ├── widget-notice-article.css
│ ├── widget-question.css
│ ├── widget-select-drop.css
│ ├── widget-tab-wrapper.css
│ ├── widget-table-listbox.css
│ ├── widget-text-link.css
│ └── widget-top-header.css
│ ├── fonts
│ ├── health-icon.eot
│ ├── health-icon.svg
│ ├── health-icon.ttf
│ └── health-icon.woff
│ ├── img
│ ├── asset-ad.png
│ ├── asset-favico.ico
│ ├── widget-banner1.png
│ ├── widget-banner2.png
│ ├── widget-banner3.jpg
│ ├── widget-banner3.png
│ ├── widget-banner_01.png
│ ├── widget-banner_02.png
│ ├── widget-banner_03.png
│ ├── widget-detail.png
│ ├── widget-group-1.png
│ ├── widget-group-2.png
│ ├── widget-group-3.png
│ ├── widget-group-4.png
│ ├── widget-icon_arrow.png
│ ├── widget-info01.png
│ ├── widget-info02.png
│ ├── widget-it-1.png
│ ├── widget-it-2.png
│ ├── widget-it-3.png
│ ├── widget-nav-1.png
│ ├── widget-nav-2.png
│ ├── widget-nav-3.png
│ ├── widget-nav-4.png
│ ├── widget-order_01.png
│ ├── widget-order_02.png
│ ├── widget-order_03.png
│ ├── widget-order_04.png
│ ├── widget-program01.png
│ ├── widget-risk01.png
│ ├── widget-risk02.png
│ ├── widget-risk03.png
│ ├── widget-zx01.png
│ ├── widget-zx02.png
│ ├── widget-zx03.png
│ ├── widget-zx04.png
│ └── widget-zx05.png
│ ├── index.jsp
│ ├── pages
│ ├── checkrecord_list.html
│ ├── index.html
│ ├── login.html
│ ├── orderInfo.html
│ ├── orderNotice.html
│ ├── orderSuccess.html
│ ├── setmeal.html
│ └── setmeal_detail.html
│ └── plugins
│ ├── datapicker
│ ├── datePicker.js
│ ├── zepto.js
│ ├── zepto.mtimer.css
│ └── zepto.mtimer.js
│ ├── elementui
│ ├── fonts
│ │ └── element-icons.woff
│ ├── index.css
│ └── index.js
│ ├── fancybox
│ ├── CHANGELOG.md
│ ├── README.md
│ ├── demo
│ │ ├── 1_b.jpg
│ │ ├── 1_s.jpg
│ │ ├── 2_b.jpg
│ │ ├── 2_s.jpg
│ │ ├── 3_b.jpg
│ │ ├── 3_s.jpg
│ │ ├── 4_b.jpg
│ │ ├── 4_s.jpg
│ │ ├── 5_b.jpg
│ │ ├── 5_s.jpg
│ │ ├── ajax.txt
│ │ ├── iframe.html
│ │ └── index.html
│ ├── lib
│ │ ├── jquery-1.10.1.min.js
│ │ ├── jquery-1.9.0.min.js
│ │ └── jquery.mousewheel-3.0.6.pack.js
│ ├── source
│ │ ├── blank.gif
│ │ ├── fancybox_loading.gif
│ │ ├── fancybox_loading@2x.gif
│ │ ├── fancybox_overlay.png
│ │ ├── fancybox_sprite.png
│ │ ├── fancybox_sprite@2x.png
│ │ ├── helpers
│ │ │ ├── fancybox_buttons.png
│ │ │ ├── jquery.fancybox-buttons.css
│ │ │ ├── jquery.fancybox-buttons.js
│ │ │ ├── jquery.fancybox-media.js
│ │ │ ├── jquery.fancybox-thumbs.css
│ │ │ └── jquery.fancybox-thumbs.js
│ │ ├── jquery.fancybox.css
│ │ ├── jquery.fancybox.js
│ │ └── jquery.fancybox.pack.js
│ └── sprite.psd
│ ├── healthmobile.js
│ ├── jquery.datetime.picker
│ ├── jquery.datetimepicker.css
│ ├── jquery.datetimepicker.full.min.js
│ └── jquery.min.js
│ ├── jquery
│ ├── AUTHORS.txt
│ ├── LICENSE.txt
│ ├── README.md
│ ├── bower.json
│ ├── dist
│ │ ├── core.js
│ │ ├── jquery.js
│ │ ├── jquery.min.js
│ │ ├── jquery.min.map
│ │ ├── jquery.slim.js
│ │ ├── jquery.slim.min.js
│ │ └── jquery.slim.min.map
│ ├── external
│ │ └── sizzle
│ │ │ ├── LICENSE.txt
│ │ │ └── dist
│ │ │ ├── sizzle.js
│ │ │ ├── sizzle.min.js
│ │ │ └── sizzle.min.map
│ └── src
│ │ ├── ajax.js
│ │ ├── ajax
│ │ ├── jsonp.js
│ │ ├── load.js
│ │ ├── parseJSON.js
│ │ ├── parseXML.js
│ │ ├── script.js
│ │ ├── var
│ │ │ ├── location.js
│ │ │ ├── nonce.js
│ │ │ └── rquery.js
│ │ └── xhr.js
│ │ ├── attributes.js
│ │ ├── attributes
│ │ ├── attr.js
│ │ ├── classes.js
│ │ ├── prop.js
│ │ ├── support.js
│ │ └── val.js
│ │ ├── callbacks.js
│ │ ├── core.js
│ │ ├── core
│ │ ├── DOMEval.js
│ │ ├── access.js
│ │ ├── init.js
│ │ ├── nodeName.js
│ │ ├── parseHTML.js
│ │ ├── ready-no-deferred.js
│ │ ├── ready.js
│ │ ├── readyException.js
│ │ ├── stripAndCollapse.js
│ │ ├── support.js
│ │ └── var
│ │ │ └── rsingleTag.js
│ │ ├── css.js
│ │ ├── css
│ │ ├── addGetHookIf.js
│ │ ├── adjustCSS.js
│ │ ├── curCSS.js
│ │ ├── defaultDisplay.js
│ │ ├── hiddenVisibleSelectors.js
│ │ ├── showHide.js
│ │ ├── support.js
│ │ └── var
│ │ │ ├── cssExpand.js
│ │ │ ├── getStyles.js
│ │ │ ├── isHidden.js
│ │ │ ├── isHiddenWithinTree.js
│ │ │ ├── rmargin.js
│ │ │ ├── rnumnonpx.js
│ │ │ └── swap.js
│ │ ├── data.js
│ │ ├── data
│ │ ├── Data.js
│ │ └── var
│ │ │ ├── acceptData.js
│ │ │ ├── dataPriv.js
│ │ │ └── dataUser.js
│ │ ├── deferred.js
│ │ ├── deferred
│ │ └── exceptionHook.js
│ │ ├── deprecated.js
│ │ ├── dimensions.js
│ │ ├── effects.js
│ │ ├── effects
│ │ ├── Tween.js
│ │ └── animatedSelector.js
│ │ ├── event.js
│ │ ├── event
│ │ ├── ajax.js
│ │ ├── alias.js
│ │ ├── focusin.js
│ │ ├── support.js
│ │ └── trigger.js
│ │ ├── exports
│ │ ├── amd.js
│ │ └── global.js
│ │ ├── intro.js
│ │ ├── jquery.js
│ │ ├── manipulation.js
│ │ ├── manipulation
│ │ ├── _evalUrl.js
│ │ ├── buildFragment.js
│ │ ├── getAll.js
│ │ ├── setGlobalEval.js
│ │ ├── support.js
│ │ ├── var
│ │ │ ├── rcheckableType.js
│ │ │ ├── rscriptType.js
│ │ │ └── rtagName.js
│ │ └── wrapMap.js
│ │ ├── offset.js
│ │ ├── outro.js
│ │ ├── queue.js
│ │ ├── queue
│ │ └── delay.js
│ │ ├── selector-native.js
│ │ ├── selector-sizzle.js
│ │ ├── selector.js
│ │ ├── serialize.js
│ │ ├── traversing.js
│ │ ├── traversing
│ │ ├── findFilter.js
│ │ └── var
│ │ │ ├── dir.js
│ │ │ ├── rneedsContext.js
│ │ │ └── siblings.js
│ │ ├── var
│ │ ├── ObjectFunctionString.js
│ │ ├── arr.js
│ │ ├── class2type.js
│ │ ├── concat.js
│ │ ├── document.js
│ │ ├── documentElement.js
│ │ ├── fnToString.js
│ │ ├── getProto.js
│ │ ├── hasOwn.js
│ │ ├── indexOf.js
│ │ ├── pnum.js
│ │ ├── push.js
│ │ ├── rcssNum.js
│ │ ├── rnothtmlwhite.js
│ │ ├── rnotwhite.js
│ │ ├── slice.js
│ │ ├── support.js
│ │ └── toString.js
│ │ └── wrap.js
│ ├── normalize-css
│ ├── LICENSE.md
│ ├── bower.json
│ └── normalize.css
│ ├── rainbow-custom.min.js
│ ├── rainbow.css
│ ├── slider-pro
│ ├── jquery.sliderPro.min.js
│ └── slider-pro.min.css
│ ├── src-min
│ ├── ace.js
│ ├── ext-beautify.js
│ ├── ext-chromevox.js
│ ├── ext-elastic_tabstops_lite.js
│ ├── ext-emmet.js
│ ├── ext-error_marker.js
│ ├── ext-keybinding_menu.js
│ ├── ext-language_tools.js
│ ├── ext-linking.js
│ ├── ext-modelist.js
│ ├── ext-old_ie.js
│ ├── ext-searchbox.js
│ ├── ext-settings_menu.js
│ ├── ext-spellcheck.js
│ ├── ext-split.js
│ ├── ext-static_highlight.js
│ ├── ext-statusbar.js
│ ├── ext-textarea.js
│ ├── ext-themelist.js
│ ├── ext-whitespace.js
│ ├── keybinding-emacs.js
│ ├── keybinding-vim.js
│ ├── mode-abap.js
│ ├── mode-abc.js
│ ├── mode-actionscript.js
│ ├── mode-ada.js
│ ├── mode-apache_conf.js
│ ├── mode-applescript.js
│ ├── mode-asciidoc.js
│ ├── mode-assembly_x86.js
│ ├── mode-autohotkey.js
│ ├── mode-batchfile.js
│ ├── mode-bro.js
│ ├── mode-c9search.js
│ ├── mode-c_cpp.js
│ ├── mode-cirru.js
│ ├── mode-clojure.js
│ ├── mode-cobol.js
│ ├── mode-coffee.js
│ ├── mode-coldfusion.js
│ ├── mode-csharp.js
│ ├── mode-csound_document.js
│ ├── mode-csound_orchestra.js
│ ├── mode-csound_score.js
│ ├── mode-css.js
│ ├── mode-curly.js
│ ├── mode-d.js
│ ├── mode-dart.js
│ ├── mode-diff.js
│ ├── mode-django.js
│ ├── mode-dockerfile.js
│ ├── mode-dot.js
│ ├── mode-drools.js
│ ├── mode-eiffel.js
│ ├── mode-ejs.js
│ ├── mode-elixir.js
│ ├── mode-elm.js
│ ├── mode-erlang.js
│ ├── mode-forth.js
│ ├── mode-fortran.js
│ ├── mode-ftl.js
│ ├── mode-gcode.js
│ ├── mode-gherkin.js
│ ├── mode-gitignore.js
│ ├── mode-glsl.js
│ ├── mode-gobstones.js
│ ├── mode-golang.js
│ ├── mode-graphqlschema.js
│ ├── mode-groovy.js
│ ├── mode-haml.js
│ ├── mode-handlebars.js
│ ├── mode-haskell.js
│ ├── mode-haskell_cabal.js
│ ├── mode-haxe.js
│ ├── mode-hjson.js
│ ├── mode-html.js
│ ├── mode-html_elixir.js
│ ├── mode-html_ruby.js
│ ├── mode-ini.js
│ ├── mode-io.js
│ ├── mode-jack.js
│ ├── mode-jade.js
│ ├── mode-java.js
│ ├── mode-javascript.js
│ ├── mode-json.js
│ ├── mode-jsoniq.js
│ ├── mode-jsp.js
│ ├── mode-jssm.js
│ ├── mode-jsx.js
│ ├── mode-julia.js
│ ├── mode-kotlin.js
│ ├── mode-latex.js
│ ├── mode-lean.js
│ ├── mode-less.js
│ ├── mode-liquid.js
│ ├── mode-lisp.js
│ ├── mode-live_script.js
│ ├── mode-livescript.js
│ ├── mode-logiql.js
│ ├── mode-lsl.js
│ ├── mode-lua.js
│ ├── mode-luapage.js
│ ├── mode-lucene.js
│ ├── mode-makefile.js
│ ├── mode-markdown.js
│ ├── mode-mask.js
│ ├── mode-matlab.js
│ ├── mode-maze.js
│ ├── mode-mel.js
│ ├── mode-mips_assembler.js
│ ├── mode-mipsassembler.js
│ ├── mode-mushcode.js
│ ├── mode-mysql.js
│ ├── mode-nix.js
│ ├── mode-nsis.js
│ ├── mode-objectivec.js
│ ├── mode-ocaml.js
│ ├── mode-pascal.js
│ ├── mode-perl.js
│ ├── mode-pgsql.js
│ ├── mode-php.js
│ ├── mode-pig.js
│ ├── mode-plain_text.js
│ ├── mode-powershell.js
│ ├── mode-praat.js
│ ├── mode-prolog.js
│ ├── mode-properties.js
│ ├── mode-protobuf.js
│ ├── mode-python.js
│ ├── mode-r.js
│ ├── mode-razor.js
│ ├── mode-rdoc.js
│ ├── mode-red.js
│ ├── mode-rhtml.js
│ ├── mode-rst.js
│ ├── mode-ruby.js
│ ├── mode-rust.js
│ ├── mode-sass.js
│ ├── mode-scad.js
│ ├── mode-scala.js
│ ├── mode-scheme.js
│ ├── mode-scss.js
│ ├── mode-sh.js
│ ├── mode-sjs.js
│ ├── mode-smarty.js
│ ├── mode-snippets.js
│ ├── mode-soy_template.js
│ ├── mode-space.js
│ ├── mode-sparql.js
│ ├── mode-sql.js
│ ├── mode-sqlserver.js
│ ├── mode-stylus.js
│ ├── mode-svg.js
│ ├── mode-swift.js
│ ├── mode-swig.js
│ ├── mode-tcl.js
│ ├── mode-tex.js
│ ├── mode-text.js
│ ├── mode-textile.js
│ ├── mode-toml.js
│ ├── mode-tsx.js
│ ├── mode-turtle.js
│ ├── mode-twig.js
│ ├── mode-typescript.js
│ ├── mode-vala.js
│ ├── mode-vbscript.js
│ ├── mode-velocity.js
│ ├── mode-verilog.js
│ ├── mode-vhdl.js
│ ├── mode-wollok.js
│ ├── mode-xml.js
│ ├── mode-xquery.js
│ ├── mode-yaml.js
│ ├── snippets
│ │ ├── abap.js
│ │ ├── abc.js
│ │ ├── actionscript.js
│ │ ├── ada.js
│ │ ├── apache_conf.js
│ │ ├── applescript.js
│ │ ├── asciidoc.js
│ │ ├── assembly_x86.js
│ │ ├── autohotkey.js
│ │ ├── batchfile.js
│ │ ├── bro.js
│ │ ├── c9search.js
│ │ ├── c_cpp.js
│ │ ├── cirru.js
│ │ ├── clojure.js
│ │ ├── cobol.js
│ │ ├── coffee.js
│ │ ├── coldfusion.js
│ │ ├── csharp.js
│ │ ├── csound_document.js
│ │ ├── csound_orchestra.js
│ │ ├── csound_score.js
│ │ ├── css.js
│ │ ├── curly.js
│ │ ├── d.js
│ │ ├── dart.js
│ │ ├── diff.js
│ │ ├── django.js
│ │ ├── dockerfile.js
│ │ ├── dot.js
│ │ ├── drools.js
│ │ ├── eiffel.js
│ │ ├── ejs.js
│ │ ├── elixir.js
│ │ ├── elm.js
│ │ ├── erlang.js
│ │ ├── forth.js
│ │ ├── fortran.js
│ │ ├── ftl.js
│ │ ├── gcode.js
│ │ ├── gherkin.js
│ │ ├── gitignore.js
│ │ ├── glsl.js
│ │ ├── gobstones.js
│ │ ├── golang.js
│ │ ├── graphqlschema.js
│ │ ├── groovy.js
│ │ ├── haml.js
│ │ ├── handlebars.js
│ │ ├── haskell.js
│ │ ├── haskell_cabal.js
│ │ ├── haxe.js
│ │ ├── hjson.js
│ │ ├── html.js
│ │ ├── html_elixir.js
│ │ ├── html_ruby.js
│ │ ├── ini.js
│ │ ├── io.js
│ │ ├── jack.js
│ │ ├── jade.js
│ │ ├── java.js
│ │ ├── javascript.js
│ │ ├── json.js
│ │ ├── jsoniq.js
│ │ ├── jsp.js
│ │ ├── jssm.js
│ │ ├── jsx.js
│ │ ├── julia.js
│ │ ├── kotlin.js
│ │ ├── latex.js
│ │ ├── lean.js
│ │ ├── less.js
│ │ ├── liquid.js
│ │ ├── lisp.js
│ │ ├── live_script.js
│ │ ├── livescript.js
│ │ ├── logiql.js
│ │ ├── lsl.js
│ │ ├── lua.js
│ │ ├── luapage.js
│ │ ├── lucene.js
│ │ ├── makefile.js
│ │ ├── markdown.js
│ │ ├── mask.js
│ │ ├── matlab.js
│ │ ├── maze.js
│ │ ├── mel.js
│ │ ├── mips_assembler.js
│ │ ├── mipsassembler.js
│ │ ├── mushcode.js
│ │ ├── mysql.js
│ │ ├── nix.js
│ │ ├── nsis.js
│ │ ├── objectivec.js
│ │ ├── ocaml.js
│ │ ├── pascal.js
│ │ ├── perl.js
│ │ ├── pgsql.js
│ │ ├── php.js
│ │ ├── pig.js
│ │ ├── plain_text.js
│ │ ├── powershell.js
│ │ ├── praat.js
│ │ ├── prolog.js
│ │ ├── properties.js
│ │ ├── protobuf.js
│ │ ├── python.js
│ │ ├── r.js
│ │ ├── razor.js
│ │ ├── rdoc.js
│ │ ├── red.js
│ │ ├── rhtml.js
│ │ ├── rst.js
│ │ ├── ruby.js
│ │ ├── rust.js
│ │ ├── sass.js
│ │ ├── scad.js
│ │ ├── scala.js
│ │ ├── scheme.js
│ │ ├── scss.js
│ │ ├── sh.js
│ │ ├── sjs.js
│ │ ├── smarty.js
│ │ ├── snippets.js
│ │ ├── soy_template.js
│ │ ├── space.js
│ │ ├── sparql.js
│ │ ├── sql.js
│ │ ├── sqlserver.js
│ │ ├── stylus.js
│ │ ├── svg.js
│ │ ├── swift.js
│ │ ├── swig.js
│ │ ├── tcl.js
│ │ ├── tex.js
│ │ ├── text.js
│ │ ├── textile.js
│ │ ├── toml.js
│ │ ├── tsx.js
│ │ ├── turtle.js
│ │ ├── twig.js
│ │ ├── typescript.js
│ │ ├── vala.js
│ │ ├── vbscript.js
│ │ ├── velocity.js
│ │ ├── verilog.js
│ │ ├── vhdl.js
│ │ ├── wollok.js
│ │ ├── xml.js
│ │ ├── xquery.js
│ │ └── yaml.js
│ ├── theme-ambiance.js
│ ├── theme-chaos.js
│ ├── theme-chrome.js
│ ├── theme-clouds.js
│ ├── theme-clouds_midnight.js
│ ├── theme-cobalt.js
│ ├── theme-crimson_editor.js
│ ├── theme-dawn.js
│ ├── theme-dracula.js
│ ├── theme-dreamweaver.js
│ ├── theme-eclipse.js
│ ├── theme-github.js
│ ├── theme-gob.js
│ ├── theme-gruvbox.js
│ ├── theme-idle_fingers.js
│ ├── theme-iplastic.js
│ ├── theme-katzenmilch.js
│ ├── theme-kr_theme.js
│ ├── theme-kuroir.js
│ ├── theme-merbivore.js
│ ├── theme-merbivore_soft.js
│ ├── theme-mono_industrial.js
│ ├── theme-monokai.js
│ ├── theme-pastel_on_dark.js
│ ├── theme-solarized_dark.js
│ ├── theme-solarized_light.js
│ ├── theme-sqlserver.js
│ ├── theme-terminal.js
│ ├── theme-textmate.js
│ ├── theme-tomorrow.js
│ ├── theme-tomorrow_night.js
│ ├── theme-tomorrow_night_blue.js
│ ├── theme-tomorrow_night_bright.js
│ ├── theme-tomorrow_night_eighties.js
│ ├── theme-twilight.js
│ ├── theme-vibrant_ink.js
│ ├── theme-xcode.js
│ ├── worker-coffee.js
│ ├── worker-css.js
│ ├── worker-html.js
│ ├── worker-javascript.js
│ ├── worker-json.js
│ ├── worker-lua.js
│ ├── worker-php.js
│ ├── worker-xml.js
│ └── worker-xquery.js
│ ├── src
│ ├── ace.js
│ ├── ext-beautify.js
│ ├── ext-chromevox.js
│ ├── ext-elastic_tabstops_lite.js
│ ├── ext-emmet.js
│ ├── ext-error_marker.js
│ ├── ext-keybinding_menu.js
│ ├── ext-language_tools.js
│ ├── ext-linking.js
│ ├── ext-modelist.js
│ ├── ext-old_ie.js
│ ├── ext-searchbox.js
│ ├── ext-settings_menu.js
│ ├── ext-spellcheck.js
│ ├── ext-split.js
│ ├── ext-static_highlight.js
│ ├── ext-statusbar.js
│ ├── ext-textarea.js
│ ├── ext-themelist.js
│ ├── ext-whitespace.js
│ ├── keybinding-emacs.js
│ ├── keybinding-vim.js
│ ├── mode-abap.js
│ ├── mode-abc.js
│ ├── mode-actionscript.js
│ ├── mode-ada.js
│ ├── mode-apache_conf.js
│ ├── mode-applescript.js
│ ├── mode-asciidoc.js
│ ├── mode-assembly_x86.js
│ ├── mode-autohotkey.js
│ ├── mode-batchfile.js
│ ├── mode-bro.js
│ ├── mode-c9search.js
│ ├── mode-c_cpp.js
│ ├── mode-cirru.js
│ ├── mode-clojure.js
│ ├── mode-cobol.js
│ ├── mode-coffee.js
│ ├── mode-coldfusion.js
│ ├── mode-csharp.js
│ ├── mode-csound_document.js
│ ├── mode-csound_orchestra.js
│ ├── mode-csound_score.js
│ ├── mode-css.js
│ ├── mode-curly.js
│ ├── mode-d.js
│ ├── mode-dart.js
│ ├── mode-diff.js
│ ├── mode-django.js
│ ├── mode-dockerfile.js
│ ├── mode-dot.js
│ ├── mode-drools.js
│ ├── mode-eiffel.js
│ ├── mode-ejs.js
│ ├── mode-elixir.js
│ ├── mode-elm.js
│ ├── mode-erlang.js
│ ├── mode-forth.js
│ ├── mode-fortran.js
│ ├── mode-ftl.js
│ ├── mode-gcode.js
│ ├── mode-gherkin.js
│ ├── mode-gitignore.js
│ ├── mode-glsl.js
│ ├── mode-gobstones.js
│ ├── mode-golang.js
│ ├── mode-graphqlschema.js
│ ├── mode-groovy.js
│ ├── mode-haml.js
│ ├── mode-handlebars.js
│ ├── mode-haskell.js
│ ├── mode-haskell_cabal.js
│ ├── mode-haxe.js
│ ├── mode-hjson.js
│ ├── mode-html.js
│ ├── mode-html_elixir.js
│ ├── mode-html_ruby.js
│ ├── mode-ini.js
│ ├── mode-io.js
│ ├── mode-jack.js
│ ├── mode-jade.js
│ ├── mode-java.js
│ ├── mode-javascript.js
│ ├── mode-json.js
│ ├── mode-jsoniq.js
│ ├── mode-jsp.js
│ ├── mode-jssm.js
│ ├── mode-jsx.js
│ ├── mode-julia.js
│ ├── mode-kotlin.js
│ ├── mode-latex.js
│ ├── mode-lean.js
│ ├── mode-less.js
│ ├── mode-liquid.js
│ ├── mode-lisp.js
│ ├── mode-live_script.js
│ ├── mode-livescript.js
│ ├── mode-logiql.js
│ ├── mode-lsl.js
│ ├── mode-lua.js
│ ├── mode-luapage.js
│ ├── mode-lucene.js
│ ├── mode-makefile.js
│ ├── mode-markdown.js
│ ├── mode-mask.js
│ ├── mode-matlab.js
│ ├── mode-maze.js
│ ├── mode-mel.js
│ ├── mode-mips_assembler.js
│ ├── mode-mipsassembler.js
│ ├── mode-mushcode.js
│ ├── mode-mysql.js
│ ├── mode-nix.js
│ ├── mode-nsis.js
│ ├── mode-objectivec.js
│ ├── mode-ocaml.js
│ ├── mode-pascal.js
│ ├── mode-perl.js
│ ├── mode-pgsql.js
│ ├── mode-php.js
│ ├── mode-pig.js
│ ├── mode-plain_text.js
│ ├── mode-powershell.js
│ ├── mode-praat.js
│ ├── mode-prolog.js
│ ├── mode-properties.js
│ ├── mode-protobuf.js
│ ├── mode-python.js
│ ├── mode-r.js
│ ├── mode-razor.js
│ ├── mode-rdoc.js
│ ├── mode-red.js
│ ├── mode-rhtml.js
│ ├── mode-rst.js
│ ├── mode-ruby.js
│ ├── mode-rust.js
│ ├── mode-sass.js
│ ├── mode-scad.js
│ ├── mode-scala.js
│ ├── mode-scheme.js
│ ├── mode-scss.js
│ ├── mode-sh.js
│ ├── mode-sjs.js
│ ├── mode-smarty.js
│ ├── mode-snippets.js
│ ├── mode-soy_template.js
│ ├── mode-space.js
│ ├── mode-sparql.js
│ ├── mode-sql.js
│ ├── mode-sqlserver.js
│ ├── mode-stylus.js
│ ├── mode-svg.js
│ ├── mode-swift.js
│ ├── mode-swig.js
│ ├── mode-tcl.js
│ ├── mode-tex.js
│ ├── mode-text.js
│ ├── mode-textile.js
│ ├── mode-toml.js
│ ├── mode-tsx.js
│ ├── mode-turtle.js
│ ├── mode-twig.js
│ ├── mode-typescript.js
│ ├── mode-vala.js
│ ├── mode-vbscript.js
│ ├── mode-velocity.js
│ ├── mode-verilog.js
│ ├── mode-vhdl.js
│ ├── mode-wollok.js
│ ├── mode-xml.js
│ ├── mode-xquery.js
│ ├── mode-yaml.js
│ ├── snippets
│ │ ├── abap.js
│ │ ├── abc.js
│ │ ├── actionscript.js
│ │ ├── ada.js
│ │ ├── apache_conf.js
│ │ ├── applescript.js
│ │ ├── asciidoc.js
│ │ ├── assembly_x86.js
│ │ ├── autohotkey.js
│ │ ├── batchfile.js
│ │ ├── bro.js
│ │ ├── c9search.js
│ │ ├── c_cpp.js
│ │ ├── cirru.js
│ │ ├── clojure.js
│ │ ├── cobol.js
│ │ ├── coffee.js
│ │ ├── coldfusion.js
│ │ ├── csharp.js
│ │ ├── csound_document.js
│ │ ├── csound_orchestra.js
│ │ ├── csound_score.js
│ │ ├── css.js
│ │ ├── curly.js
│ │ ├── d.js
│ │ ├── dart.js
│ │ ├── diff.js
│ │ ├── django.js
│ │ ├── dockerfile.js
│ │ ├── dot.js
│ │ ├── drools.js
│ │ ├── eiffel.js
│ │ ├── ejs.js
│ │ ├── elixir.js
│ │ ├── elm.js
│ │ ├── erlang.js
│ │ ├── forth.js
│ │ ├── fortran.js
│ │ ├── ftl.js
│ │ ├── gcode.js
│ │ ├── gherkin.js
│ │ ├── gitignore.js
│ │ ├── glsl.js
│ │ ├── gobstones.js
│ │ ├── golang.js
│ │ ├── graphqlschema.js
│ │ ├── groovy.js
│ │ ├── haml.js
│ │ ├── handlebars.js
│ │ ├── haskell.js
│ │ ├── haskell_cabal.js
│ │ ├── haxe.js
│ │ ├── hjson.js
│ │ ├── html.js
│ │ ├── html_elixir.js
│ │ ├── html_ruby.js
│ │ ├── ini.js
│ │ ├── io.js
│ │ ├── jack.js
│ │ ├── jade.js
│ │ ├── java.js
│ │ ├── javascript.js
│ │ ├── json.js
│ │ ├── jsoniq.js
│ │ ├── jsp.js
│ │ ├── jssm.js
│ │ ├── jsx.js
│ │ ├── julia.js
│ │ ├── kotlin.js
│ │ ├── latex.js
│ │ ├── lean.js
│ │ ├── less.js
│ │ ├── liquid.js
│ │ ├── lisp.js
│ │ ├── live_script.js
│ │ ├── livescript.js
│ │ ├── logiql.js
│ │ ├── lsl.js
│ │ ├── lua.js
│ │ ├── luapage.js
│ │ ├── lucene.js
│ │ ├── makefile.js
│ │ ├── markdown.js
│ │ ├── mask.js
│ │ ├── matlab.js
│ │ ├── maze.js
│ │ ├── mel.js
│ │ ├── mips_assembler.js
│ │ ├── mipsassembler.js
│ │ ├── mushcode.js
│ │ ├── mysql.js
│ │ ├── nix.js
│ │ ├── nsis.js
│ │ ├── objectivec.js
│ │ ├── ocaml.js
│ │ ├── pascal.js
│ │ ├── perl.js
│ │ ├── pgsql.js
│ │ ├── php.js
│ │ ├── pig.js
│ │ ├── plain_text.js
│ │ ├── powershell.js
│ │ ├── praat.js
│ │ ├── prolog.js
│ │ ├── properties.js
│ │ ├── protobuf.js
│ │ ├── python.js
│ │ ├── r.js
│ │ ├── razor.js
│ │ ├── rdoc.js
│ │ ├── red.js
│ │ ├── rhtml.js
│ │ ├── rst.js
│ │ ├── ruby.js
│ │ ├── rust.js
│ │ ├── sass.js
│ │ ├── scad.js
│ │ ├── scala.js
│ │ ├── scheme.js
│ │ ├── scss.js
│ │ ├── sh.js
│ │ ├── sjs.js
│ │ ├── smarty.js
│ │ ├── snippets.js
│ │ ├── soy_template.js
│ │ ├── space.js
│ │ ├── sparql.js
│ │ ├── sql.js
│ │ ├── sqlserver.js
│ │ ├── stylus.js
│ │ ├── svg.js
│ │ ├── swift.js
│ │ ├── swig.js
│ │ ├── tcl.js
│ │ ├── tex.js
│ │ ├── text.js
│ │ ├── textile.js
│ │ ├── toml.js
│ │ ├── tsx.js
│ │ ├── turtle.js
│ │ ├── twig.js
│ │ ├── typescript.js
│ │ ├── vala.js
│ │ ├── vbscript.js
│ │ ├── velocity.js
│ │ ├── verilog.js
│ │ ├── vhdl.js
│ │ ├── wollok.js
│ │ ├── xml.js
│ │ ├── xquery.js
│ │ └── yaml.js
│ ├── theme-ambiance.js
│ ├── theme-chaos.js
│ ├── theme-chrome.js
│ ├── theme-clouds.js
│ ├── theme-clouds_midnight.js
│ ├── theme-cobalt.js
│ ├── theme-crimson_editor.js
│ ├── theme-dawn.js
│ ├── theme-dracula.js
│ ├── theme-dreamweaver.js
│ ├── theme-eclipse.js
│ ├── theme-github.js
│ ├── theme-gob.js
│ ├── theme-gruvbox.js
│ ├── theme-idle_fingers.js
│ ├── theme-iplastic.js
│ ├── theme-katzenmilch.js
│ ├── theme-kr_theme.js
│ ├── theme-kuroir.js
│ ├── theme-merbivore.js
│ ├── theme-merbivore_soft.js
│ ├── theme-mono_industrial.js
│ ├── theme-monokai.js
│ ├── theme-pastel_on_dark.js
│ ├── theme-solarized_dark.js
│ ├── theme-solarized_light.js
│ ├── theme-sqlserver.js
│ ├── theme-terminal.js
│ ├── theme-textmate.js
│ ├── theme-tomorrow.js
│ ├── theme-tomorrow_night.js
│ ├── theme-tomorrow_night_blue.js
│ ├── theme-tomorrow_night_bright.js
│ ├── theme-tomorrow_night_eighties.js
│ ├── theme-twilight.js
│ ├── theme-vibrant_ink.js
│ ├── theme-xcode.js
│ ├── worker-coffee.js
│ ├── worker-css.js
│ ├── worker-html.js
│ ├── worker-javascript.js
│ ├── worker-json.js
│ ├── worker-lua.js
│ ├── worker-php.js
│ ├── worker-xml.js
│ └── worker-xquery.js
│ ├── toastr
│ ├── README.md
│ ├── bower.json
│ ├── toastr.css
│ ├── toastr.js
│ ├── toastr.js.map
│ ├── toastr.less
│ ├── toastr.min.css
│ ├── toastr.min.js
│ └── toastr.scss
│ ├── uedter
│ ├── dialogs
│ │ ├── anchor
│ │ │ └── anchor.html
│ │ ├── attachment
│ │ │ ├── attachment.css
│ │ │ ├── attachment.html
│ │ │ ├── attachment.js
│ │ │ ├── fileTypeImages
│ │ │ │ ├── icon_chm.gif
│ │ │ │ ├── icon_default.png
│ │ │ │ ├── icon_doc.gif
│ │ │ │ ├── icon_exe.gif
│ │ │ │ ├── icon_jpg.gif
│ │ │ │ ├── icon_mp3.gif
│ │ │ │ ├── icon_mv.gif
│ │ │ │ ├── icon_pdf.gif
│ │ │ │ ├── icon_ppt.gif
│ │ │ │ ├── icon_psd.gif
│ │ │ │ ├── icon_rar.gif
│ │ │ │ ├── icon_txt.gif
│ │ │ │ └── icon_xls.gif
│ │ │ └── images
│ │ │ │ ├── alignicon.gif
│ │ │ │ ├── alignicon.png
│ │ │ │ ├── bg.png
│ │ │ │ ├── file-icons.gif
│ │ │ │ ├── file-icons.png
│ │ │ │ ├── icons.gif
│ │ │ │ ├── icons.png
│ │ │ │ ├── image.png
│ │ │ │ ├── progress.png
│ │ │ │ ├── success.gif
│ │ │ │ └── success.png
│ │ ├── background
│ │ │ ├── background.css
│ │ │ ├── background.html
│ │ │ ├── background.js
│ │ │ └── images
│ │ │ │ ├── bg.png
│ │ │ │ └── success.png
│ │ ├── charts
│ │ │ ├── chart.config.js
│ │ │ ├── charts.css
│ │ │ ├── charts.html
│ │ │ ├── charts.js
│ │ │ └── images
│ │ │ │ ├── charts0.png
│ │ │ │ ├── charts1.png
│ │ │ │ ├── charts2.png
│ │ │ │ ├── charts3.png
│ │ │ │ ├── charts4.png
│ │ │ │ └── charts5.png
│ │ ├── emotion
│ │ │ ├── emotion.css
│ │ │ ├── emotion.html
│ │ │ ├── emotion.js
│ │ │ └── images
│ │ │ │ ├── 0.gif
│ │ │ │ ├── bface.gif
│ │ │ │ ├── cface.gif
│ │ │ │ ├── fface.gif
│ │ │ │ ├── jxface2.gif
│ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ ├── tface.gif
│ │ │ │ ├── wface.gif
│ │ │ │ └── yface.gif
│ │ ├── gmap
│ │ │ └── gmap.html
│ │ ├── help
│ │ │ ├── help.css
│ │ │ ├── help.html
│ │ │ └── help.js
│ │ ├── image
│ │ │ ├── image.css
│ │ │ ├── image.html
│ │ │ ├── image.js
│ │ │ └── images
│ │ │ │ ├── alignicon.jpg
│ │ │ │ ├── bg.png
│ │ │ │ ├── icons.gif
│ │ │ │ ├── icons.png
│ │ │ │ ├── image.png
│ │ │ │ ├── progress.png
│ │ │ │ ├── success.gif
│ │ │ │ └── success.png
│ │ ├── insertframe
│ │ │ └── insertframe.html
│ │ ├── internal.js
│ │ ├── link
│ │ │ └── link.html
│ │ ├── map
│ │ │ ├── map.html
│ │ │ └── show.html
│ │ ├── music
│ │ │ ├── music.css
│ │ │ ├── music.html
│ │ │ └── music.js
│ │ ├── preview
│ │ │ └── preview.html
│ │ ├── scrawl
│ │ │ ├── images
│ │ │ │ ├── addimg.png
│ │ │ │ ├── brush.png
│ │ │ │ ├── delimg.png
│ │ │ │ ├── delimgH.png
│ │ │ │ ├── empty.png
│ │ │ │ ├── emptyH.png
│ │ │ │ ├── eraser.png
│ │ │ │ ├── redo.png
│ │ │ │ ├── redoH.png
│ │ │ │ ├── scale.png
│ │ │ │ ├── scaleH.png
│ │ │ │ ├── size.png
│ │ │ │ ├── undo.png
│ │ │ │ └── undoH.png
│ │ │ ├── scrawl.css
│ │ │ ├── scrawl.html
│ │ │ └── scrawl.js
│ │ ├── searchreplace
│ │ │ ├── searchreplace.html
│ │ │ └── searchreplace.js
│ │ ├── snapscreen
│ │ │ └── snapscreen.html
│ │ ├── spechars
│ │ │ ├── spechars.html
│ │ │ └── spechars.js
│ │ ├── table
│ │ │ ├── dragicon.png
│ │ │ ├── edittable.css
│ │ │ ├── edittable.html
│ │ │ ├── edittable.js
│ │ │ ├── edittd.html
│ │ │ └── edittip.html
│ │ ├── template
│ │ │ ├── config.js
│ │ │ ├── images
│ │ │ │ ├── bg.gif
│ │ │ │ ├── pre0.png
│ │ │ │ ├── pre1.png
│ │ │ │ ├── pre2.png
│ │ │ │ ├── pre3.png
│ │ │ │ └── pre4.png
│ │ │ ├── template.css
│ │ │ ├── template.html
│ │ │ └── template.js
│ │ ├── video
│ │ │ ├── images
│ │ │ │ ├── bg.png
│ │ │ │ ├── center_focus.jpg
│ │ │ │ ├── file-icons.gif
│ │ │ │ ├── file-icons.png
│ │ │ │ ├── icons.gif
│ │ │ │ ├── icons.png
│ │ │ │ ├── image.png
│ │ │ │ ├── left_focus.jpg
│ │ │ │ ├── none_focus.jpg
│ │ │ │ ├── progress.png
│ │ │ │ ├── right_focus.jpg
│ │ │ │ ├── success.gif
│ │ │ │ └── success.png
│ │ │ ├── video.css
│ │ │ ├── video.html
│ │ │ └── video.js
│ │ ├── webapp
│ │ │ └── webapp.html
│ │ └── wordimage
│ │ │ ├── fClipboard_ueditor.swf
│ │ │ ├── imageUploader.swf
│ │ │ ├── tangram.js
│ │ │ ├── wordimage.html
│ │ │ └── wordimage.js
│ ├── index.html
│ ├── lang
│ │ ├── en
│ │ │ ├── en.js
│ │ │ └── images
│ │ │ │ ├── addimage.png
│ │ │ │ ├── alldeletebtnhoverskin.png
│ │ │ │ ├── alldeletebtnupskin.png
│ │ │ │ ├── background.png
│ │ │ │ ├── button.png
│ │ │ │ ├── copy.png
│ │ │ │ ├── deletedisable.png
│ │ │ │ ├── deleteenable.png
│ │ │ │ ├── listbackground.png
│ │ │ │ ├── localimage.png
│ │ │ │ ├── music.png
│ │ │ │ ├── rotateleftdisable.png
│ │ │ │ ├── rotateleftenable.png
│ │ │ │ ├── rotaterightdisable.png
│ │ │ │ ├── rotaterightenable.png
│ │ │ │ └── upload.png
│ │ └── zh-cn
│ │ │ ├── images
│ │ │ ├── copy.png
│ │ │ ├── localimage.png
│ │ │ ├── music.png
│ │ │ └── upload.png
│ │ │ └── zh-cn.js
│ ├── php
│ │ ├── Uploader.class.php
│ │ ├── action_crawler.php
│ │ ├── action_list.php
│ │ ├── action_upload.php
│ │ ├── config.json
│ │ └── controller.php
│ ├── themes
│ │ ├── default
│ │ │ ├── css
│ │ │ │ ├── ueditor.css
│ │ │ │ └── ueditor.min.css
│ │ │ ├── dialogbase.css
│ │ │ └── images
│ │ │ │ ├── anchor.gif
│ │ │ │ ├── arrow.png
│ │ │ │ ├── arrow_down.png
│ │ │ │ ├── arrow_up.png
│ │ │ │ ├── button-bg.gif
│ │ │ │ ├── cancelbutton.gif
│ │ │ │ ├── charts.png
│ │ │ │ ├── cursor_h.gif
│ │ │ │ ├── cursor_h.png
│ │ │ │ ├── cursor_v.gif
│ │ │ │ ├── cursor_v.png
│ │ │ │ ├── dialog-title-bg.png
│ │ │ │ ├── filescan.png
│ │ │ │ ├── highlighted.gif
│ │ │ │ ├── icons-all.gif
│ │ │ │ ├── icons.gif
│ │ │ │ ├── icons.png
│ │ │ │ ├── loaderror.png
│ │ │ │ ├── loading.gif
│ │ │ │ ├── lock.gif
│ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ ├── pagebreak.gif
│ │ │ │ ├── scale.png
│ │ │ │ ├── sortable.png
│ │ │ │ ├── spacer.gif
│ │ │ │ ├── sparator_v.png
│ │ │ │ ├── table-cell-align.png
│ │ │ │ ├── tangram-colorpicker.png
│ │ │ │ ├── toolbar_bg.png
│ │ │ │ ├── unhighlighted.gif
│ │ │ │ ├── upload.png
│ │ │ │ ├── videologo.gif
│ │ │ │ ├── word.gif
│ │ │ │ └── wordpaste.png
│ │ └── iframe.css
│ ├── third-party
│ │ ├── SyntaxHighlighter
│ │ │ ├── shCore.js
│ │ │ └── shCoreDefault.css
│ │ ├── codemirror
│ │ │ ├── codemirror.css
│ │ │ └── codemirror.js
│ │ ├── highcharts
│ │ │ ├── adapters
│ │ │ │ ├── mootools-adapter.js
│ │ │ │ ├── mootools-adapter.src.js
│ │ │ │ ├── prototype-adapter.js
│ │ │ │ ├── prototype-adapter.src.js
│ │ │ │ ├── standalone-framework.js
│ │ │ │ └── standalone-framework.src.js
│ │ │ ├── highcharts-more.js
│ │ │ ├── highcharts-more.src.js
│ │ │ ├── highcharts.js
│ │ │ ├── highcharts.src.js
│ │ │ ├── modules
│ │ │ │ ├── annotations.js
│ │ │ │ ├── annotations.src.js
│ │ │ │ ├── canvas-tools.js
│ │ │ │ ├── canvas-tools.src.js
│ │ │ │ ├── data.js
│ │ │ │ ├── data.src.js
│ │ │ │ ├── drilldown.js
│ │ │ │ ├── drilldown.src.js
│ │ │ │ ├── exporting.js
│ │ │ │ ├── exporting.src.js
│ │ │ │ ├── funnel.js
│ │ │ │ ├── funnel.src.js
│ │ │ │ ├── heatmap.js
│ │ │ │ ├── heatmap.src.js
│ │ │ │ ├── map.js
│ │ │ │ ├── map.src.js
│ │ │ │ ├── no-data-to-display.js
│ │ │ │ └── no-data-to-display.src.js
│ │ │ └── themes
│ │ │ │ ├── dark-blue.js
│ │ │ │ ├── dark-green.js
│ │ │ │ ├── gray.js
│ │ │ │ ├── grid.js
│ │ │ │ └── skies.js
│ │ ├── jquery-1.10.2.js
│ │ ├── jquery-1.10.2.min.js
│ │ ├── jquery-1.10.2.min.map
│ │ ├── snapscreen
│ │ │ └── UEditorSnapscreen.exe
│ │ ├── video-js
│ │ │ ├── font
│ │ │ │ ├── vjs.eot
│ │ │ │ ├── vjs.svg
│ │ │ │ ├── vjs.ttf
│ │ │ │ └── vjs.woff
│ │ │ ├── video-js.css
│ │ │ ├── video-js.min.css
│ │ │ ├── video-js.swf
│ │ │ ├── video.dev.js
│ │ │ └── video.js
│ │ ├── webuploader
│ │ │ ├── Uploader.swf
│ │ │ ├── webuploader.css
│ │ │ ├── webuploader.custom.js
│ │ │ ├── webuploader.custom.min.js
│ │ │ ├── webuploader.flashonly.js
│ │ │ ├── webuploader.flashonly.min.js
│ │ │ ├── webuploader.html5only.js
│ │ │ ├── webuploader.html5only.min.js
│ │ │ ├── webuploader.js
│ │ │ ├── webuploader.min.js
│ │ │ ├── webuploader.withoutimage.js
│ │ │ └── webuploader.withoutimage.min.js
│ │ ├── xss.min.js
│ │ └── zeroclipboard
│ │ │ ├── ZeroClipboard.js
│ │ │ ├── ZeroClipboard.min.js
│ │ │ └── ZeroClipboard.swf
│ ├── ueditor.all.js
│ ├── ueditor.all.min.js
│ ├── ueditor.config.js
│ ├── ueditor.parse.js
│ └── ueditor.parse.min.js
│ └── vue
│ ├── axios-0.18.0.js
│ └── vue.js
├── pom.xml
├── quartz_demo
├── pom.xml
└── src
│ └── main
│ ├── java
│ └── com
│ │ └── itheima
│ │ └── job
│ │ ├── App.java
│ │ └── JobDemo.java
│ ├── resources
│ └── application-jobs.xml
│ └── webapp
│ ├── WEB-INF
│ └── web.xml
│ └── index.jsp
└── springsecuritydemo
├── pom.xml
└── src
├── main
├── java
│ └── com
│ │ └── itheima
│ │ └── security
│ │ ├── controller
│ │ └── HelloController.java
│ │ └── service
│ │ └── UserService.java
├── resources
│ └── spring-security.xml
└── webapp
│ ├── WEB-INF
│ └── web.xml
│ ├── a.html
│ ├── b.html
│ ├── c.html
│ ├── css
│ ├── login.css
│ ├── orderset.css
│ └── style.css
│ ├── d.html
│ ├── index.html
│ ├── index.jsp
│ ├── js
│ ├── axios-0.18.0.js
│ ├── jquery.min.js
│ └── vue.js
│ ├── login.html
│ └── test.html
└── test
└── java
└── com
└── test
├── TestSpringSecurity.java
└── testMD5.java
/.gitattributes:
--------------------------------------------------------------------------------
1 | *.js linguist-language=java
2 |
3 | *.css linguist-language=java
4 |
5 | *.html linguist-language=java
6 |
--------------------------------------------------------------------------------
/dubbo_consumer/src/main/java/com/itheima/service/HelloService.java:
--------------------------------------------------------------------------------
1 | package com.itheima.service;
2 |
3 | /**
4 | * @Author ysl
5 | * @Date 2020/3/10 14:49
6 | * @Description:
7 | **/
8 | public interface HelloService {
9 | public String sayHello(String name);
10 | }
11 |
--------------------------------------------------------------------------------
/dubbo_consumer/src/main/webapp/index.jsp:
--------------------------------------------------------------------------------
1 |
2 |
3 | Hello World!
4 |
5 |
6 |
--------------------------------------------------------------------------------
/dubbo_provider/src/main/java/com/itheima/service/HelloService.java:
--------------------------------------------------------------------------------
1 | package com.itheima.service;
2 |
3 | /**
4 | * @Author ysl
5 | * @Date 2020/3/10 14:49
6 | * @Description:
7 | **/
8 | public interface HelloService {
9 | public String sayHello(String name);
10 | }
11 |
--------------------------------------------------------------------------------
/dubbo_provider/src/main/java/com/itheima/service/impl/HelloServiceImpl.java:
--------------------------------------------------------------------------------
1 | package com.itheima.service.impl;
2 |
3 | import com.alibaba.dubbo.config.annotation.Service;
4 | import com.itheima.service.HelloService;
5 |
6 | /**
7 | * @Author ysl
8 | * @Date 2020/3/10 14:50
9 | * @Description:
10 | **/
11 |
12 | @Service
13 | public class HelloServiceImpl implements HelloService {
14 |
15 |
16 | @Override
17 | public String sayHello(String name) {
18 | System.out.println("服务的sayHello方法被调用!");
19 | return "hello " + name;
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/dubbo_provider/src/main/webapp/index.jsp:
--------------------------------------------------------------------------------
1 |
2 |
3 | Hello World!
4 |
5 |
6 |
--------------------------------------------------------------------------------
/health_common/src/main/java/com/itheima/App.java:
--------------------------------------------------------------------------------
1 | package com.itheima;
2 |
3 | /**
4 | * Hello world!
5 | *
6 | */
7 | public class App
8 | {
9 | public static void main( String[] args )
10 | {
11 | System.out.println( "Hello World!" );
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/health_common/src/main/java/com/itheima/health/constant/RedisConstant.java:
--------------------------------------------------------------------------------
1 | package com.itheima.health.constant;
2 |
3 | /**
4 | * @Author ysl
5 | * @Date 2020/3/16 22:50
6 | * @Description:
7 | **/
8 |
9 |
10 | public class RedisConstant {
11 |
12 | //套餐图片所有图片名称
13 | public static final String SETMEAL_PIC_RESOURCES = "setmealPicResources";
14 |
15 | //套餐图片保存在数据库中的图片名称
16 | public static final String SETMEAL_PIC_DB_RESOURCES = "setmealPicDbResources";
17 | }
18 |
--------------------------------------------------------------------------------
/health_common/src/main/java/com/itheima/health/constant/RedisMessageConstant.java:
--------------------------------------------------------------------------------
1 | package com.itheima.health.constant;
2 |
3 | /**
4 | * @Author ysl
5 | * @Date 2020/3/18 20:38
6 | * @Description:
7 | **/
8 |
9 |
10 | public class RedisMessageConstant {
11 | public static final String SENDTYPE_ORDER = "001";//用于缓存体检预约时发送的验证码
12 | public static final String SENDTYPE_LOGIN = "002";//用于缓存手机号快速登录时发送的验证码
13 | public static final String SENDTYPE_GETPWD = "003";//用于缓存找回密码时发送的验证码
14 | }
15 |
--------------------------------------------------------------------------------
/health_common/src/test/java/com/itheima/AppTest.java:
--------------------------------------------------------------------------------
1 | package com.itheima;
2 |
3 | import static org.junit.Assert.assertTrue;
4 |
5 | import org.junit.Test;
6 |
7 | /**
8 | * Unit test for simple App.
9 | */
10 | public class AppTest
11 | {
12 | /**
13 | * Rigorous Test :-)
14 | */
15 | @Test
16 | public void shouldAnswerWithTrue()
17 | {
18 | assertTrue( true );
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/health_common/src/test/java/com/itheima/SmsMain.java:
--------------------------------------------------------------------------------
1 | package com.itheima;
2 |
3 | import com.itheima.health.utils.SMSUtils;
4 |
5 | /**
6 | * @Author ysl
7 | * @Date 2020/3/19 19:04
8 | * @Description:
9 | **/
10 |
11 |
12 | public class SmsMain {
13 | public static void main(String[] args) throws Exception{
14 | SMSUtils.sendShortMessage("SMS_17868648","18678675464","1234");
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/health_dao/src/main/java/com/itheima/App.java:
--------------------------------------------------------------------------------
1 | package com.itheima;
2 |
3 | /**
4 | * Hello world!
5 | *
6 | */
7 | public class App
8 | {
9 | public static void main( String[] args )
10 | {
11 | System.out.println( "Hello World!" );
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/health_dao/src/main/java/com/itheima/health/dao/PermissionDao.java:
--------------------------------------------------------------------------------
1 | package com.itheima.health.dao;
2 |
3 | import com.itheima.health.pojo.Permission;
4 | import org.springframework.stereotype.Repository;
5 |
6 | import java.util.Set;
7 |
8 | /**
9 | * @Author ysl
10 | * @Date 2020/3/21 21:53
11 | * @Description:
12 | **/
13 | @Repository
14 | public interface PermissionDao {
15 |
16 | Set findPermissionsByRoleId(Integer roleId);
17 | }
18 |
--------------------------------------------------------------------------------
/health_dao/src/main/java/com/itheima/health/dao/RoleDao.java:
--------------------------------------------------------------------------------
1 | package com.itheima.health.dao;
2 |
3 | import com.itheima.health.pojo.Role;
4 | import org.springframework.stereotype.Repository;
5 |
6 | import java.util.Set;
7 |
8 | /**
9 | * @Author ysl
10 | * @Date 2020/3/21 21:52
11 | * @Description:
12 | **/
13 | @Repository
14 | public interface RoleDao {
15 |
16 | Set findRolesByUserId(Integer userId);
17 | }
18 |
--------------------------------------------------------------------------------
/health_dao/src/main/java/com/itheima/health/dao/UserDao.java:
--------------------------------------------------------------------------------
1 | package com.itheima.health.dao;
2 |
3 | import com.itheima.health.pojo.User;
4 | import org.springframework.stereotype.Repository;
5 |
6 | /**
7 | * @Author ysl
8 | * @Date 2020/3/21 21:46
9 | * @Description:
10 | **/
11 |
12 | @Repository
13 | public interface UserDao {
14 |
15 |
16 | User findUserByUsername(String username);
17 | }
18 |
--------------------------------------------------------------------------------
/health_dao/src/main/resources/SqlMapConfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
12 |
13 |
--------------------------------------------------------------------------------
/health_dao/src/main/resources/com/itheima/health/dao/PermissionDao.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
9 |
--------------------------------------------------------------------------------
/health_dao/src/test/java/com/itheima/AppTest.java:
--------------------------------------------------------------------------------
1 | package com.itheima;
2 |
3 | import static org.junit.Assert.assertTrue;
4 |
5 | import org.junit.Test;
6 |
7 | /**
8 | * Unit test for simple App.
9 | */
10 | public class AppTest
11 | {
12 | /**
13 | * Rigorous Test :-)
14 | */
15 | @Test
16 | public void shouldAnswerWithTrue()
17 | {
18 | assertTrue( true );
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/health_interface/src/main/java/com/itheima/App.java:
--------------------------------------------------------------------------------
1 | package com.itheima;
2 |
3 | /**
4 | * Hello world!
5 | *
6 | */
7 | public class App
8 | {
9 | public static void main( String[] args )
10 | {
11 | System.out.println( "Hello World!" );
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/health_interface/src/main/java/com/itheima/health/service/MemberService.java:
--------------------------------------------------------------------------------
1 | package com.itheima.health.service;
2 |
3 | import com.itheima.health.pojo.Member;
4 |
5 | import java.util.List;
6 |
7 | /**
8 | * @Author ysl
9 | * @Date 2020/3/21 11:21
10 | * @Description: 会员服务
11 | **/
12 | public interface MemberService {
13 |
14 |
15 | Member findByTelephone(String telephone);
16 |
17 | void add(Member member);
18 |
19 | /**
20 | * 根据月份统计会员数量
21 | * @param list
22 | * @return
23 | */
24 | List findMemberCountByMonth(List list);
25 | }
26 |
--------------------------------------------------------------------------------
/health_interface/src/main/java/com/itheima/health/service/OrderService.java:
--------------------------------------------------------------------------------
1 | package com.itheima.health.service;
2 |
3 | import com.itheima.health.entity.Result;
4 |
5 | import java.util.Map;
6 |
7 | /**
8 | * @Author ysl
9 | * @Date 2020/3/20 13:24
10 | * @Description: 体检预约服务接口
11 | **/
12 | public interface OrderService {
13 |
14 | Result order(Map map) throws Exception;
15 |
16 |
17 | /**
18 | * 根据id查询预约信息,包括套餐信息和会员信息
19 | * @param id
20 | * @return
21 | */
22 | Result findById4Detail(Integer id) throws Exception;
23 | }
24 |
--------------------------------------------------------------------------------
/health_interface/src/main/java/com/itheima/health/service/UserService.java:
--------------------------------------------------------------------------------
1 | package com.itheima.health.service;
2 |
3 | import com.itheima.health.pojo.User;
4 |
5 | /**
6 | * @Author ysl
7 | * @Date 2020/3/21 21:39
8 | * @Description: 用户服务接口
9 | **/
10 | public interface UserService {
11 |
12 | User findUserByUsername(String username);
13 | }
14 |
--------------------------------------------------------------------------------
/health_interface/src/test/java/com/itheima/AppTest.java:
--------------------------------------------------------------------------------
1 | package com.itheima;
2 |
3 | import static org.junit.Assert.assertTrue;
4 |
5 | import org.junit.Test;
6 |
7 | /**
8 | * Unit test for simple App.
9 | */
10 | public class AppTest
11 | {
12 | /**
13 | * Rigorous Test :-)
14 | */
15 | @Test
16 | public void shouldAnswerWithTrue()
17 | {
18 | assertTrue( true );
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/health_jobs/src/main/webapp/index.jsp:
--------------------------------------------------------------------------------
1 |
2 |
3 | Hello World!
4 |
5 |
6 |
--------------------------------------------------------------------------------
/health_pojo/src/main/java/com/itheima/App.java:
--------------------------------------------------------------------------------
1 | package com.itheima;
2 |
3 | /**
4 | * Hello world!
5 | *
6 | */
7 | public class App
8 | {
9 | public static void main( String[] args )
10 | {
11 | System.out.println( "Hello World!" );
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/health_pojo/src/test/java/com/itheima/AppTest.java:
--------------------------------------------------------------------------------
1 | package com.itheima;
2 |
3 | import static org.junit.Assert.assertTrue;
4 |
5 | import org.junit.Test;
6 |
7 | /**
8 | * Unit test for simple App.
9 | */
10 | public class AppTest
11 | {
12 | /**
13 | * Rigorous Test :-)
14 | */
15 | @Test
16 | public void shouldAnswerWithTrue()
17 | {
18 | assertTrue( true );
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/health_service/src/main/webapp/index.jsp:
--------------------------------------------------------------------------------
1 |
2 |
3 | Hello World!
4 |
5 |
6 |
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/american-express.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/american-express.png
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/avatar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/avatar.png
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/avatar04.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/avatar04.png
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/avatar2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/avatar2.png
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/avatar3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/avatar3.png
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/avatar5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/avatar5.png
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/bg.jpg
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/boxed-bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/boxed-bg.jpg
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/boxed-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/boxed-bg.png
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/cirrus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/cirrus.png
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/icons.png
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/loginLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/loginLogo.png
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/logingBg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/logingBg.png
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/logo.png
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/mastercard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/mastercard.png
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/mestro.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/mestro.png
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/minilogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/minilogo.png
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/paypal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/paypal.png
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/paypal2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/paypal2.png
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/photo1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/photo1.png
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/photo2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/photo2.png
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/photo3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/photo3.jpg
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/photo4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/photo4.jpg
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/pwd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/pwd.png
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/user.png
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/user1-128x128.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/user1-128x128.jpg
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/user2-160x160.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/user2-160x160.jpg
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/user3-128x128.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/user3-128x128.jpg
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/user4-128x128.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/user4-128x128.jpg
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/user5-128x128.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/user5-128x128.jpg
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/user6-128x128.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/user6-128x128.jpg
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/user7-128x128.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/user7-128x128.jpg
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/user8-128x128.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/user8-128x128.jpg
--------------------------------------------------------------------------------
/health_web/src/main/webapp/img/visa.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/img/visa.png
--------------------------------------------------------------------------------
/health_web/src/main/webapp/index.jsp:
--------------------------------------------------------------------------------
1 |
2 |
3 | Hello World!
4 |
5 |
6 |
--------------------------------------------------------------------------------
/health_web/src/main/webapp/plugins/elementui/fonts/element-icons.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/plugins/elementui/fonts/element-icons.woff
--------------------------------------------------------------------------------
/health_web/src/main/webapp/plugins/font-awesome/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/plugins/font-awesome/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/health_web/src/main/webapp/plugins/font-awesome/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/plugins/font-awesome/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/health_web/src/main/webapp/plugins/font-awesome/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/plugins/font-awesome/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/health_web/src/main/webapp/plugins/font-awesome/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/plugins/font-awesome/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/health_web/src/main/webapp/plugins/font-awesome/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/plugins/font-awesome/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/health_web/src/main/webapp/template/ordersetting_template.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/template/ordersetting_template.xlsx
--------------------------------------------------------------------------------
/health_web/src/main/webapp/template/report_template.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/health_web/src/main/webapp/template/report_template.xlsx
--------------------------------------------------------------------------------
/healthmobile_web/src/main/resources/redis.properties:
--------------------------------------------------------------------------------
1 | 最大分配的对象数
2 | redis.pool.maxActive=200
3 | #最大能够保持idel状态的对象数
4 | redis.pool.maxIdle=50
5 | redis.pool.minIdle=10
6 | redis.pool.maxWaitMillis=20000
7 | #当池内没有返回对象时,最大等待时间
8 | redis.pool.maxWait=300
9 |
10 | #格式:redis://:[密码]@[服务器地址]:[端口]/[db index]
11 | #redis.uri = redis://:12345@127.0.0.1:6379/0
12 |
13 | redis.host = 127.0.0.1
14 | redis.port = 6379
15 | redis.timeout = 30000
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/css/widget-article.css:
--------------------------------------------------------------------------------
1 | /*
2 | * colors variables
3 | */
4 | .article {
5 | padding: 3% 5.3%;
6 | background-color: #fff;
7 | }
8 |
9 | .article .title {
10 | font-size: 18px;
11 | color: #333;
12 | font-weight: bold;
13 | }
14 |
15 | .article .subtitle {
16 | padding-top: 2%;
17 | font-size: 12px;
18 | line-height: 2;
19 | color: #999;
20 | }
21 |
22 | .article .box {
23 | padding-top: 3.3%;
24 | }
25 |
26 | .article .box p {
27 | margin-bottom: 2%;
28 | font-size: 14px;
29 | color: #3b3b3b;
30 | line-height: 1.8;
31 | }
32 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/css/widget-footer.css:
--------------------------------------------------------------------------------
1 | /*
2 | * colors variables
3 | */
4 | footer {
5 | width: 100%;
6 | background: #333;
7 | display: flex;
8 | position: fixed;
9 | left: 0px;
10 | bottom: 0px;
11 | text-align: center;
12 | font-size: 12px;
13 | height: 50px;
14 | }
15 |
16 | footer div {
17 | flex: 1;
18 | cursor: pointer;
19 | }
20 |
21 | footer .active {
22 | color: #21b97a;
23 | }
24 |
25 | footer .active i:before {
26 | color: #21b97a;
27 | }
28 |
29 | footer i {
30 | display: block;
31 | margin: 4px 0px;
32 | line-height: 30px;
33 | font-size: 24px;
34 | width: 100%;
35 | }
36 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/css/widget-ind-nav.css:
--------------------------------------------------------------------------------
1 | /*
2 | * colors variables
3 | */
4 | nav {
5 | display: flex;
6 | font-size: 14px;
7 | padding: 20px 0;
8 | text-align: center;
9 | background: #333;
10 | box-shadow: 0px 3px 3px #f3f5f7;
11 | }
12 |
13 | nav img {
14 | width: 50%;
15 | }
16 |
17 | nav div {
18 | flex: 1;
19 | cursor: pointer;
20 | }
21 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/css/widget-list-content.css:
--------------------------------------------------------------------------------
1 | /*
2 | * colors variables
3 | */
4 | .list-content .fix-info {
5 | padding: 0 5.3%;
6 | margin-bottom: 2%;
7 | background-color: #fff;
8 | }
9 |
10 | .list-content ul li {
11 | padding: 2% 0;
12 | line-height: 2;
13 | border-bottom: 1px solid #f3f2f7;
14 | }
15 |
16 | .list-content ul li span {
17 | font-size: 16px;
18 | }
19 |
20 | .list-content ul li .tit {
21 | color: #9b9b9b;
22 | width: 30%;
23 | display: inline-block;
24 | }
25 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/css/widget-top-header.css:
--------------------------------------------------------------------------------
1 | /*
2 | * colors variables
3 | */
4 | .top-header {
5 | background-color: #000;
6 | color: #fff;
7 | text-align: center;
8 | height: 45px;
9 | line-height: 45px;
10 | font-size: 16px;
11 | padding: 0 10px;
12 | }
13 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/fonts/health-icon.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/fonts/health-icon.eot
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/fonts/health-icon.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/fonts/health-icon.ttf
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/fonts/health-icon.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/fonts/health-icon.woff
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/asset-ad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/asset-ad.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/asset-favico.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/asset-favico.ico
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-banner1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-banner1.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-banner2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-banner2.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-banner3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-banner3.jpg
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-banner3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-banner3.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-banner_01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-banner_01.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-banner_02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-banner_02.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-banner_03.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-banner_03.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-detail.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-group-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-group-1.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-group-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-group-2.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-group-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-group-3.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-group-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-group-4.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-icon_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-icon_arrow.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-info01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-info01.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-info02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-info02.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-it-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-it-1.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-it-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-it-2.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-it-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-it-3.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-nav-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-nav-1.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-nav-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-nav-2.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-nav-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-nav-3.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-nav-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-nav-4.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-order_01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-order_01.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-order_02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-order_02.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-order_03.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-order_03.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-order_04.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-order_04.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-program01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-program01.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-risk01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-risk01.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-risk02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-risk02.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-risk03.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-risk03.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-zx01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-zx01.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-zx02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-zx02.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-zx03.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-zx03.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-zx04.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-zx04.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/img/widget-zx05.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/img/widget-zx05.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/index.jsp:
--------------------------------------------------------------------------------
1 |
2 |
3 | Hello World!
4 |
5 |
6 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/elementui/fonts/element-icons.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/elementui/fonts/element-icons.woff
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/fancybox/demo/1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/fancybox/demo/1_b.jpg
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/fancybox/demo/1_s.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/fancybox/demo/1_s.jpg
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/fancybox/demo/2_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/fancybox/demo/2_b.jpg
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/fancybox/demo/2_s.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/fancybox/demo/2_s.jpg
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/fancybox/demo/3_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/fancybox/demo/3_b.jpg
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/fancybox/demo/3_s.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/fancybox/demo/3_s.jpg
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/fancybox/demo/4_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/fancybox/demo/4_b.jpg
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/fancybox/demo/4_s.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/fancybox/demo/4_s.jpg
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/fancybox/demo/5_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/fancybox/demo/5_b.jpg
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/fancybox/demo/5_s.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/fancybox/demo/5_s.jpg
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/fancybox/source/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/fancybox/source/blank.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/fancybox/source/fancybox_loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/fancybox/source/fancybox_loading.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/fancybox/source/fancybox_loading@2x.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/fancybox/source/fancybox_loading@2x.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/fancybox/source/fancybox_overlay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/fancybox/source/fancybox_overlay.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/fancybox/source/fancybox_sprite.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/fancybox/source/fancybox_sprite.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/fancybox/source/fancybox_sprite@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/fancybox/source/fancybox_sprite@2x.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/fancybox/source/helpers/fancybox_buttons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/fancybox/source/helpers/fancybox_buttons.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/fancybox/sprite.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/fancybox/sprite.psd
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "jquery",
3 | "main": "dist/jquery.js",
4 | "license": "MIT",
5 | "ignore": [
6 | "package.json"
7 | ],
8 | "keywords": [
9 | "jquery",
10 | "javascript",
11 | "browser",
12 | "library"
13 | ]
14 | }
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/ajax/parseJSON.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../core"
3 | ], function( jQuery ) {
4 |
5 | // Support: Android 2.3
6 | // Workaround failure to string-cast null input
7 | jQuery.parseJSON = function( data ) {
8 | return JSON.parse( data + "" );
9 | };
10 |
11 | return jQuery.parseJSON;
12 |
13 | } );
14 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/ajax/var/location.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | return window.location;
5 | } );
6 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/ajax/var/nonce.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../../core"
3 | ], function( jQuery ) {
4 | "use strict";
5 |
6 | return jQuery.now();
7 | } );
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/ajax/var/rquery.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | return ( /\?/ );
5 | } );
6 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/attributes.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "./core",
3 | "./attributes/attr",
4 | "./attributes/prop",
5 | "./attributes/classes",
6 | "./attributes/val"
7 | ], function( jQuery ) {
8 |
9 | "use strict";
10 |
11 | // Return jQuery for attributes-only inclusion
12 | return jQuery;
13 | } );
14 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/core/DOMEval.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../var/document"
3 | ], function( document ) {
4 | "use strict";
5 |
6 | function DOMEval( code, doc ) {
7 | doc = doc || document;
8 |
9 | var script = doc.createElement( "script" );
10 |
11 | script.text = code;
12 | doc.head.appendChild( script ).parentNode.removeChild( script );
13 | }
14 |
15 | return DOMEval;
16 | } );
17 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/core/nodeName.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 |
3 | "use strict";
4 |
5 | function nodeName( elem, name ) {
6 |
7 | return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
8 |
9 | };
10 |
11 | return nodeName;
12 |
13 | } );
14 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/core/readyException.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../core"
3 | ], function( jQuery ) {
4 |
5 | "use strict";
6 |
7 | jQuery.readyException = function( error ) {
8 | window.setTimeout( function() {
9 | throw error;
10 | } );
11 | };
12 |
13 | } );
14 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/core/stripAndCollapse.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../var/rnothtmlwhite"
3 | ], function( rnothtmlwhite ) {
4 | "use strict";
5 |
6 | // Strip and collapse whitespace according to HTML spec
7 | // https://html.spec.whatwg.org/multipage/infrastructure.html#strip-and-collapse-whitespace
8 | function stripAndCollapse( value ) {
9 | var tokens = value.match( rnothtmlwhite ) || [];
10 | return tokens.join( " " );
11 | }
12 |
13 | return stripAndCollapse;
14 | } );
15 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/core/var/rsingleTag.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | // Match a standalone tag
5 | return ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i );
6 | } );
7 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/css/hiddenVisibleSelectors.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../core",
3 | "../selector"
4 | ], function( jQuery ) {
5 |
6 | "use strict";
7 |
8 | jQuery.expr.pseudos.hidden = function( elem ) {
9 | return !jQuery.expr.pseudos.visible( elem );
10 | };
11 | jQuery.expr.pseudos.visible = function( elem ) {
12 | return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );
13 | };
14 |
15 | } );
16 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/css/var/cssExpand.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | return [ "Top", "Right", "Bottom", "Left" ];
5 | } );
6 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/css/var/getStyles.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | return function( elem ) {
5 |
6 | // Support: IE <=11 only, Firefox <=30 (#15098, #14150)
7 | // IE throws on elements created in popups
8 | // FF meanwhile throws on frame elements through "defaultView.getComputedStyle"
9 | var view = elem.ownerDocument.defaultView;
10 |
11 | if ( !view || !view.opener ) {
12 | view = window;
13 | }
14 |
15 | return view.getComputedStyle( elem );
16 | };
17 | } );
18 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/css/var/isHidden.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../../core",
3 | "../../selector"
4 |
5 | // css is assumed
6 | ], function( jQuery ) {
7 |
8 | return function( elem, el ) {
9 |
10 | // isHidden might be called from jQuery#filter function;
11 | // in that case, element will be second argument
12 | elem = el || elem;
13 | return jQuery.css( elem, "display" ) === "none" ||
14 | !jQuery.contains( elem.ownerDocument, elem );
15 | };
16 | } );
17 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/css/var/rmargin.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | return ( /^margin/ );
5 | } );
6 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/css/var/rnumnonpx.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../../var/pnum"
3 | ], function( pnum ) {
4 | "use strict";
5 |
6 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
7 | } );
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/data/var/acceptData.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 |
3 | "use strict";
4 |
5 | /**
6 | * Determines whether an object can have data
7 | */
8 | return function( owner ) {
9 |
10 | // Accepts only:
11 | // - Node
12 | // - Node.ELEMENT_NODE
13 | // - Node.DOCUMENT_NODE
14 | // - Object
15 | // - Any
16 | return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
17 | };
18 |
19 | } );
20 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/data/var/dataPriv.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../Data"
3 | ], function( Data ) {
4 | "use strict";
5 |
6 | return new Data();
7 | } );
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/data/var/dataUser.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../Data"
3 | ], function( Data ) {
4 | "use strict";
5 |
6 | return new Data();
7 | } );
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/effects/animatedSelector.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../core",
3 | "../selector",
4 | "../effects"
5 | ], function( jQuery ) {
6 |
7 | "use strict";
8 |
9 | jQuery.expr.pseudos.animated = function( elem ) {
10 | return jQuery.grep( jQuery.timers, function( fn ) {
11 | return elem === fn.elem;
12 | } ).length;
13 | };
14 |
15 | } );
16 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/event/ajax.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../core",
3 | "../event"
4 | ], function( jQuery ) {
5 |
6 | "use strict";
7 |
8 | // Attach a bunch of functions for handling common AJAX events
9 | jQuery.each( [
10 | "ajaxStart",
11 | "ajaxStop",
12 | "ajaxComplete",
13 | "ajaxError",
14 | "ajaxSuccess",
15 | "ajaxSend"
16 | ], function( i, type ) {
17 | jQuery.fn[ type ] = function( fn ) {
18 | return this.on( type, fn );
19 | };
20 | } );
21 |
22 | } );
23 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/event/support.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../var/support"
3 | ], function( support ) {
4 |
5 | "use strict";
6 |
7 | support.focusin = "onfocusin" in window;
8 |
9 | return support;
10 |
11 | } );
12 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/manipulation/_evalUrl.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../ajax"
3 | ], function( jQuery ) {
4 |
5 | "use strict";
6 |
7 | jQuery._evalUrl = function( url ) {
8 | return jQuery.ajax( {
9 | url: url,
10 |
11 | // Make this explicit, since user can override this through ajaxSetup (#11264)
12 | type: "GET",
13 | dataType: "script",
14 | cache: true,
15 | async: false,
16 | global: false,
17 | "throws": true
18 | } );
19 | };
20 |
21 | return jQuery._evalUrl;
22 |
23 | } );
24 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/manipulation/setGlobalEval.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../data/var/dataPriv"
3 | ], function( dataPriv ) {
4 |
5 | "use strict";
6 |
7 | // Mark scripts as having already been evaluated
8 | function setGlobalEval( elems, refElements ) {
9 | var i = 0,
10 | l = elems.length;
11 |
12 | for ( ; i < l; i++ ) {
13 | dataPriv.set(
14 | elems[ i ],
15 | "globalEval",
16 | !refElements || dataPriv.get( refElements[ i ], "globalEval" )
17 | );
18 | }
19 | }
20 |
21 | return setGlobalEval;
22 | } );
23 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/manipulation/var/rcheckableType.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | return ( /^(?:checkbox|radio)$/i );
5 | } );
6 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/manipulation/var/rscriptType.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | return ( /^$|\/(?:java|ecma)script/i );
5 | } );
6 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/manipulation/var/rtagName.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | return ( /<([a-z][^\/\0>\x20\t\r\n\f]+)/i );
5 | } );
6 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/outro.js:
--------------------------------------------------------------------------------
1 | return jQuery;
2 | }));
3 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/selector-sizzle.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "./core",
3 | "../external/sizzle/dist/sizzle"
4 | ], function( jQuery, Sizzle ) {
5 |
6 | "use strict";
7 |
8 | jQuery.find = Sizzle;
9 | jQuery.expr = Sizzle.selectors;
10 |
11 | // Deprecated
12 | jQuery.expr[ ":" ] = jQuery.expr.pseudos;
13 | jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;
14 | jQuery.text = Sizzle.getText;
15 | jQuery.isXMLDoc = Sizzle.isXML;
16 | jQuery.contains = Sizzle.contains;
17 | jQuery.escapeSelector = Sizzle.escape;
18 |
19 | } );
20 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/selector.js:
--------------------------------------------------------------------------------
1 | define( [ "./selector-sizzle" ], function() {
2 | "use strict";
3 | } );
4 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/traversing/var/dir.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../../core"
3 | ], function( jQuery ) {
4 |
5 | "use strict";
6 |
7 | return function( elem, dir, until ) {
8 | var matched = [],
9 | truncate = until !== undefined;
10 |
11 | while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {
12 | if ( elem.nodeType === 1 ) {
13 | if ( truncate && jQuery( elem ).is( until ) ) {
14 | break;
15 | }
16 | matched.push( elem );
17 | }
18 | }
19 | return matched;
20 | };
21 |
22 | } );
23 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/traversing/var/rneedsContext.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../../core",
3 | "../../selector"
4 | ], function( jQuery ) {
5 | "use strict";
6 |
7 | return jQuery.expr.match.needsContext;
8 | } );
9 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/traversing/var/siblings.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 |
3 | "use strict";
4 |
5 | return function( n, elem ) {
6 | var matched = [];
7 |
8 | for ( ; n; n = n.nextSibling ) {
9 | if ( n.nodeType === 1 && n !== elem ) {
10 | matched.push( n );
11 | }
12 | }
13 |
14 | return matched;
15 | };
16 |
17 | } );
18 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/var/ObjectFunctionString.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "./fnToString"
3 | ], function( fnToString ) {
4 | "use strict";
5 |
6 | return fnToString.call( Object );
7 | } );
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/var/arr.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | return [];
5 | } );
6 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/var/class2type.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | // [[Class]] -> type pairs
5 | return {};
6 | } );
7 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/var/concat.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "./arr"
3 | ], function( arr ) {
4 | "use strict";
5 |
6 | return arr.concat;
7 | } );
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/var/document.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | return window.document;
5 | } );
6 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/var/documentElement.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "./document"
3 | ], function( document ) {
4 | "use strict";
5 |
6 | return document.documentElement;
7 | } );
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/var/fnToString.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "./hasOwn"
3 | ], function( hasOwn ) {
4 | "use strict";
5 |
6 | return hasOwn.toString;
7 | } );
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/var/getProto.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | return Object.getPrototypeOf;
5 | } );
6 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/var/hasOwn.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "./class2type"
3 | ], function( class2type ) {
4 | "use strict";
5 |
6 | return class2type.hasOwnProperty;
7 | } );
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/var/indexOf.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "./arr"
3 | ], function( arr ) {
4 | "use strict";
5 |
6 | return arr.indexOf;
7 | } );
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/var/pnum.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | return ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source;
5 | } );
6 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/var/push.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "./arr"
3 | ], function( arr ) {
4 | "use strict";
5 |
6 | return arr.push;
7 | } );
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/var/rcssNum.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../var/pnum"
3 | ], function( pnum ) {
4 |
5 | "use strict";
6 |
7 | return new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
8 |
9 | } );
10 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/var/rnothtmlwhite.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | // Only count HTML whitespace
5 | // Other whitespace should count in values
6 | // https://html.spec.whatwg.org/multipage/infrastructure.html#space-character
7 | return ( /[^\x20\t\r\n\f]+/g );
8 | } );
9 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/var/rnotwhite.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | return ( /\S+/g );
3 | } );
4 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/var/slice.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "./arr"
3 | ], function( arr ) {
4 | "use strict";
5 |
6 | return arr.slice;
7 | } );
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/var/support.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | // All support tests are defined in their respective modules.
5 | return {};
6 | } );
7 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/jquery/src/var/toString.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "./class2type"
3 | ], function( class2type ) {
4 | "use strict";
5 |
6 | return class2type.toString;
7 | } );
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/normalize-css/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "normalize-css",
3 | "description": "A modern alternative to CSS resets",
4 | "main": "normalize.css",
5 | "authors": [
6 | "Jonathan Neal (http://jonathantneal.com/)",
7 | "Nicolas Gallagher (http://nicolasgallagher.com/)"
8 | ],
9 | "license": "MIT",
10 | "ignore": [
11 | "CHANGELOG.md",
12 | "CONTRIBUTING.md",
13 | "package.json",
14 | "README.md",
15 | "test.html"
16 | ]
17 | }
18 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/ext-error_marker.js:
--------------------------------------------------------------------------------
1 | ;
2 | (function() {
3 | window.require(["ace/ext/error_marker"], function() {});
4 | })();
5 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/mode-plain_text.js:
--------------------------------------------------------------------------------
1 | define("ace/mode/plain_text",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/text_highlight_rules","ace/mode/behaviour"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text").Mode,s=e("./text_highlight_rules").TextHighlightRules,o=e("./behaviour").Behaviour,u=function(){this.HighlightRules=s,this.$behaviour=new o};r.inherits(u,i),function(){this.type="text",this.getNextLineIndent=function(e,t,n){return""},this.$id="ace/mode/plain_text"}.call(u.prototype),t.Mode=u})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/mode-text.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/src-min/mode-text.js
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/abap.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/abap",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="abap"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/ada.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/ada",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="ada"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/apache_conf.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/apache_conf",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="apache_conf"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/applescript.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/applescript",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="applescript"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/asciidoc.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/asciidoc",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="asciidoc"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/assembly_x86.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/assembly_x86",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="assembly_x86"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/autohotkey.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/autohotkey",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="autohotkey"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/batchfile.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/batchfile",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="batchfile"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/bro.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/bro",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope=""})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/c9search.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/c9search",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="c9search"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/cirru.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/cirru",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="cirru"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/cobol.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/cobol",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="cobol"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/coldfusion.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/coldfusion",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="coldfusion"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/csharp.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/csharp",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="csharp"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/csound_document.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/csound_document",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="# \nsnippet synth\n \n \n ${1}\n \n \n e\n \n \n",t.scope="csound_document"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/csound_score.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/csound_score",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="csound_score"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/curly.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/curly",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="curly"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/d.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/d",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="d"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/diff.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/diff",["require","exports","module"],function(e,t,n){"use strict";t.snippetText='# DEP-3 (http://dep.debian.net/deps/dep3/) style patch header\nsnippet header DEP-3 style header\n Description: ${1}\n Origin: ${2:vendor|upstream|other}, ${3:url of the original patch}\n Bug: ${4:url in upstream bugtracker}\n Forwarded: ${5:no|not-needed|url}\n Author: ${6:`g:snips_author`}\n Reviewed-by: ${7:name and email}\n Last-Update: ${8:`strftime("%Y-%m-%d")`}\n Applied-Upstream: ${9:upstream version|url|commit}\n\n',t.scope="diff"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/dockerfile.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/dockerfile",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="dockerfile"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/dot.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/dot",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="dot"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/drools.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/drools",["require","exports","module"],function(e,t,n){"use strict";t.snippetText='\nsnippet rule\n rule "${1?:rule_name}"\n when\n ${2:// when...} \n then\n ${3:// then...}\n end\n\nsnippet query\n query ${1?:query_name}\n ${2:// find} \n end\n \nsnippet declare\n declare ${1?:type_name}\n ${2:// attributes} \n end\n\n',t.scope="drools"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/eiffel.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/eiffel",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="eiffel"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/ejs.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/ejs",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="ejs"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/elixir.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/elixir",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope=""})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/elm.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/elm",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="elm"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/forth.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/forth",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="forth"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/fortran.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/fortran",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="fortran"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/ftl.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/ftl",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="ftl"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/gcode.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/gcode",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="gcode"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/gherkin.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/gherkin",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="gherkin"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/gitignore.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/gitignore",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="gitignore"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/glsl.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/glsl",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="glsl"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/gobstones.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/gobstones",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="# Procedure\nsnippet proc\n procedure ${1?:name}(${2:argument}) {\n ${3:// body...}\n }\n\n# Function\nsnippet fun\n function ${1?:name}(${2:argument}) {\n return ${3:// body...}\n }\n\n# Repeat\nsnippet rep\n repeat ${1?:times} {\n ${2:// body...}\n }\n\n# For\nsnippet for\n foreach ${1?:e} in ${2?:list} {\n ${3:// body...} \n }\n\n# If\nsnippet if\n if (${1?:condition}) {\n ${3:// body...} \n }\n\n# While\n while (${1?:condition}) {\n ${2:// body...} \n }\n",t.scope="gobstones"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/golang.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/golang",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="golang"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/groovy.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/groovy",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="groovy"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/haml.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/haml",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="snippet t\n %table\n %tr\n %th\n ${1:headers}\n %tr\n %td\n ${2:headers}\nsnippet ul\n %ul\n %li\n ${1:item}\n %li\nsnippet =rp\n = render :partial => '${1:partial}'\nsnippet =rpl\n = render :partial => '${1:partial}', :locals => {}\nsnippet =rpc\n = render :partial => '${1:partial}', :collection => @$1\n\n",t.scope="haml"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/handlebars.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/handlebars",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="handlebars"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/haskell_cabal.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/haskell_cabal",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="haskell_cabal"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/haxe.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/haxe",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="haxe"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/hjson.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/hjson",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope=""})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/html_elixir.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/html_elixir",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="html_elixir"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/html_ruby.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/html_ruby",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="html_ruby"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/ini.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/ini",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="ini"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/jack.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/jack",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="jack"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/jade.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/jade",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="jade"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/json.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/json",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="json"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/jssm.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/jssm",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope=""})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/jsx.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/jsx",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="jsx"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/julia.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/julia",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="julia"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/kotlin.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/kotlin",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope=""})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/latex.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/latex",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="latex"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/lean.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/lean",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="lean"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/less.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/less",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="less"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/liquid.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/liquid",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="liquid"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/lisp.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/lisp",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="lisp"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/live_script.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/live_script",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope=""})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/livescript.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/livescript",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="livescript"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/logiql.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/logiql",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="logiql"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/lua.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/lua",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="snippet #!\n #!/usr/bin/env lua\n $1\nsnippet local\n local ${1:x} = ${2:1}\nsnippet fun\n function ${1:fname}(${2:...})\n ${3:-- body}\n end\nsnippet for\n for ${1:i}=${2:1},${3:10} do\n ${4:print(i)}\n end\nsnippet forp\n for ${1:i},${2:v} in pairs(${3:table_name}) do\n ${4:-- body}\n end\nsnippet fori\n for ${1:i},${2:v} in ipairs(${3:table_name}) do\n ${4:-- body}\n end\n",t.scope="lua"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/luapage.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/luapage",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="luapage"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/lucene.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/lucene",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="lucene"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/makefile.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/makefile",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="snippet ifeq\n ifeq (${1:cond0},${2:cond1})\n ${3:code}\n endif\n",t.scope="makefile"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/mask.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/mask",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="mask"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/matlab.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/matlab",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="matlab"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/maze.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/maze",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="snippet >\ndescription assignment\nscope maze\n -> ${1}= ${2}\n\nsnippet >\ndescription if\nscope maze\n -> IF ${2:**} THEN %${3:L} ELSE %${4:R}\n",t.scope="maze"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/mel.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/mel",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="mel"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/mips_assembler.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/mips_assembler",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="mips_assembler"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/mipsassembler.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/mipsassembler",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope=""})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/mushcode.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/mushcode",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="mushcode"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/mysql.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/mysql",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="mysql"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/nix.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/nix",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="nix"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/nsis.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/nsis",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope=""})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/objectivec.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/objectivec",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="objectivec"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/ocaml.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/ocaml",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="ocaml"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/pascal.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/pascal",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="pascal"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/pgsql.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/pgsql",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="pgsql"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/pig.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/pig",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="pig"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/plain_text.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/plain_text",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="plain_text"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/powershell.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/powershell",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="powershell"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/praat.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/praat",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="praat"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/prolog.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/prolog",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="prolog"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/properties.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/properties",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="properties"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/protobuf.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/protobuf",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="",t.scope="protobuf"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/razor.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/razor",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="snippet if\n(${1} == ${2}) {\n ${3}\n}",t.scope="razor"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/rdoc.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/rdoc",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="rdoc"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/red.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/red",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=" ",t.scope="red"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/rhtml.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/rhtml",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="rhtml"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/rst.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/rst",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="# rst\n\nsnippet :\n :${1:field name}: ${2:field body}\nsnippet *\n *${1:Emphasis}*\nsnippet **\n **${1:Strong emphasis}**\nsnippet _\n \\`${1:hyperlink-name}\\`_\n .. _\\`$1\\`: ${2:link-block}\nsnippet =\n ${1:Title}\n =====${2:=}\n ${3}\nsnippet -\n ${1:Title}\n -----${2:-}\n ${3}\nsnippet cont:\n .. contents::\n \n",t.scope="rst"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/rust.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/rust",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="rust"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/sass.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/sass",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="sass"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/scad.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/scad",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="scad"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/scala.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/scala",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="scala"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/scheme.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/scheme",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="scheme"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/scss.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/scss",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="scss"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/sjs.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/sjs",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="sjs"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/smarty.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/smarty",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="smarty"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/snippets.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/snippets",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="# snippets for making snippets :)\nsnippet snip\n snippet ${1:trigger}\n ${2}\nsnippet msnip\n snippet ${1:trigger} ${2:description}\n ${3}\nsnippet v\n {VISUAL}\n",t.scope="snippets"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/soy_template.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/soy_template",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="soy_template"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/space.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/space",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="space"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/sparql.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/sparql",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope=""})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/stylus.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/stylus",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="stylus"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/svg.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/svg",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="svg"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/swift.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/swift",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="swift"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/swig.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/swig",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="swig"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/text.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/text",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="text"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/textile.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/textile",["require","exports","module"],function(e,t,n){"use strict";t.snippetText='# Jekyll post header\nsnippet header\n ---\n title: ${1:title}\n layout: post\n date: ${2:date} ${3:hour:minute:second} -05:00\n ---\n\n# Image\nsnippet img\n !${1:url}(${2:title}):${3:link}!\n\n# Table\nsnippet |\n |${1}|${2}\n\n# Link\nsnippet link\n "${1:link text}":${2:url}\n\n# Acronym\nsnippet (\n (${1:Expand acronym})${2}\n\n# Footnote\nsnippet fn\n [${1:ref number}] ${3}\n\n fn$1. ${2:footnote}\n \n',t.scope="textile"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/toml.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/toml",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="toml"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/tsx.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/tsx",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="tsx"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/turtle.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/turtle",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope=""})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/twig.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/twig",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="twig"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/typescript.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/typescript",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="typescript"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/vbscript.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/vbscript",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="vbscript"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/verilog.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/verilog",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="verilog"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/vhdl.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/vhdl",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="vhdl"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/xml.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/xml",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="xml"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src-min/snippets/yaml.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/yaml",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="yaml"})
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/ext-error_marker.js:
--------------------------------------------------------------------------------
1 |
2 | ;
3 | (function() {
4 | window.require(["ace/ext/error_marker"], function() {});
5 | })();
6 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/mode-text.js:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/abap.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/abap",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "abap";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/ada.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/ada",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "ada";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/apache_conf.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/apache_conf",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "apache_conf";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/applescript.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/applescript",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "applescript";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/asciidoc.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/asciidoc",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "asciidoc";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/assembly_x86.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/assembly_x86",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "assembly_x86";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/autohotkey.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/autohotkey",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "autohotkey";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/batchfile.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/batchfile",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "batchfile";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/bro.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/bro",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/c9search.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/c9search",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "c9search";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/cirru.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/cirru",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "cirru";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/cobol.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/cobol",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "cobol";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/coldfusion.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/coldfusion",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "coldfusion";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/csharp.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/csharp",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "csharp";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/csound_document.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/csound_document",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText = "# \n\
5 | snippet synth\n\
6 | \n\
7 | \n\
8 | ${1}\n\
9 | \n\
10 | \n\
11 | e\n\
12 | \n\
13 | \n\
14 | ";
15 | exports.scope = "csound_document";
16 |
17 | });
18 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/csound_score.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/csound_score",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "csound_score";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/curly.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/curly",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "curly";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/d.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/d",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "d";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/dockerfile.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/dockerfile",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "dockerfile";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/dot.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/dot",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "dot";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/drools.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/drools",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText = "\n\
5 | snippet rule\n\
6 | rule \"${1?:rule_name}\"\n\
7 | when\n\
8 | ${2:// when...} \n\
9 | then\n\
10 | ${3:// then...}\n\
11 | end\n\
12 | \n\
13 | snippet query\n\
14 | query ${1?:query_name}\n\
15 | ${2:// find} \n\
16 | end\n\
17 | \n\
18 | snippet declare\n\
19 | declare ${1?:type_name}\n\
20 | ${2:// attributes} \n\
21 | end\n\
22 | \n\
23 | ";
24 | exports.scope = "drools";
25 |
26 | });
27 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/eiffel.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/eiffel",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "eiffel";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/ejs.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/ejs",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "ejs";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/elixir.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/elixir",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/elm.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/elm",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "elm";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/forth.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/forth",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "forth";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/fortran.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/fortran",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "fortran";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/ftl.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/ftl",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "ftl";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/gcode.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/gcode",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "gcode";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/gherkin.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/gherkin",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "gherkin";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/gitignore.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/gitignore",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "gitignore";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/glsl.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/glsl",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "glsl";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/golang.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/golang",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "golang";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/groovy.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/groovy",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "groovy";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/handlebars.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/handlebars",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "handlebars";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/haskell_cabal.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/haskell_cabal",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "haskell_cabal";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/haxe.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/haxe",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "haxe";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/hjson.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/hjson",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/html_elixir.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/html_elixir",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "html_elixir";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/html_ruby.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/html_ruby",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "html_ruby";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/ini.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/ini",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "ini";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/jack.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/jack",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "jack";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/jade.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/jade",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "jade";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/json.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/json",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "json";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/jssm.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/jssm",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/jsx.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/jsx",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "jsx";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/julia.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/julia",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "julia";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/kotlin.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/kotlin",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/latex.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/latex",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "latex";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/lean.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/lean",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "lean";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/less.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/less",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "less";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/liquid.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/liquid",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "liquid";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/lisp.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/lisp",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "lisp";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/live_script.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/live_script",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/livescript.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/livescript",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "livescript";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/logiql.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/logiql",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "logiql";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/luapage.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/luapage",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "luapage";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/lucene.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/lucene",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "lucene";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/makefile.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/makefile",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText = "snippet ifeq\n\
5 | ifeq (${1:cond0},${2:cond1})\n\
6 | ${3:code}\n\
7 | endif\n\
8 | ";
9 | exports.scope = "makefile";
10 |
11 | });
12 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/mask.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/mask",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "mask";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/matlab.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/matlab",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "matlab";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/maze.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/maze",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText = "snippet >\n\
5 | description assignment\n\
6 | scope maze\n\
7 | -> ${1}= ${2}\n\
8 | \n\
9 | snippet >\n\
10 | description if\n\
11 | scope maze\n\
12 | -> IF ${2:**} THEN %${3:L} ELSE %${4:R}\n\
13 | ";
14 | exports.scope = "maze";
15 |
16 | });
17 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/mel.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/mel",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "mel";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/mips_assembler.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/mips_assembler",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "mips_assembler";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/mipsassembler.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/mipsassembler",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/mushcode.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/mushcode",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "mushcode";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/mysql.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/mysql",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "mysql";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/nix.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/nix",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "nix";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/nsis.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/nsis",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/objectivec.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/objectivec",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "objectivec";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/ocaml.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/ocaml",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "ocaml";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/pascal.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/pascal",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "pascal";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/pgsql.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/pgsql",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "pgsql";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/pig.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/pig",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "pig";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/plain_text.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/plain_text",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "plain_text";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/powershell.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/powershell",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "powershell";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/praat.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/praat",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "praat";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/prolog.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/prolog",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "prolog";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/properties.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/properties",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "properties";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/protobuf.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/protobuf",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText = "";
5 | exports.scope = "protobuf";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/razor.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/razor",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText = "snippet if\n\
5 | (${1} == ${2}) {\n\
6 | ${3}\n\
7 | }";
8 | exports.scope = "razor";
9 |
10 | });
11 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/rdoc.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/rdoc",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "rdoc";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/red.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/red",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText = " ";
5 | exports.scope = "red";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/rhtml.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/rhtml",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "rhtml";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/rust.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/rust",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "rust";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/sass.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/sass",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "sass";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/scad.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/scad",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "scad";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/scala.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/scala",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "scala";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/scheme.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/scheme",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "scheme";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/scss.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/scss",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "scss";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/sjs.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/sjs",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "sjs";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/smarty.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/smarty",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "smarty";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/snippets.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/snippets",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText = "# snippets for making snippets :)\n\
5 | snippet snip\n\
6 | snippet ${1:trigger}\n\
7 | ${2}\n\
8 | snippet msnip\n\
9 | snippet ${1:trigger} ${2:description}\n\
10 | ${3}\n\
11 | snippet v\n\
12 | {VISUAL}\n\
13 | ";
14 | exports.scope = "snippets";
15 |
16 | });
17 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/soy_template.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/soy_template",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "soy_template";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/space.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/space",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "space";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/sparql.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/sparql",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/stylus.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/stylus",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "stylus";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/svg.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/svg",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "svg";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/swift.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/swift",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "swift";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/swig.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/swig",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "swig";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/text.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/text",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "text";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/toml.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/toml",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "toml";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/tsx.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/tsx",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "tsx";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/turtle.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/turtle",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/twig.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/twig",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "twig";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/typescript.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/typescript",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "typescript";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/vbscript.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/vbscript",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "vbscript";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/verilog.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/verilog",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "verilog";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/vhdl.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/vhdl",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "vhdl";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/xml.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/xml",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "xml";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/src/snippets/yaml.js:
--------------------------------------------------------------------------------
1 | define("ace/snippets/yaml",["require","exports","module"], function(require, exports, module) {
2 | "use strict";
3 |
4 | exports.snippetText =undefined;
5 | exports.scope = "yaml";
6 |
7 | });
8 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/toastr/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "toastr",
3 | "version": "2.1.2",
4 | "main": ["toastr.js", "toastr.css"],
5 | "dependencies": {
6 | "jquery": ">=1.6.3"
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_chm.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_chm.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_default.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_doc.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_doc.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_exe.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_exe.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_jpg.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_jpg.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_mp3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_mp3.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_mv.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_mv.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_pdf.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_pdf.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_ppt.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_ppt.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_psd.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_psd.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_rar.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_rar.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_txt.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_txt.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_xls.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/fileTypeImages/icon_xls.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/images/alignicon.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/images/alignicon.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/images/alignicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/images/alignicon.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/images/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/images/bg.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/images/file-icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/images/file-icons.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/images/file-icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/images/file-icons.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/images/icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/images/icons.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/images/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/images/icons.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/images/image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/images/image.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/images/progress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/images/progress.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/images/success.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/images/success.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/images/success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/attachment/images/success.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/background/images/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/background/images/bg.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/background/images/success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/background/images/success.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/charts/images/charts0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/charts/images/charts0.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/charts/images/charts1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/charts/images/charts1.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/charts/images/charts2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/charts/images/charts2.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/charts/images/charts3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/charts/images/charts3.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/charts/images/charts4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/charts/images/charts4.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/charts/images/charts5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/charts/images/charts5.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/emotion/images/0.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/emotion/images/0.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/emotion/images/bface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/emotion/images/bface.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/emotion/images/cface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/emotion/images/cface.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/emotion/images/fface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/emotion/images/fface.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/emotion/images/jxface2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/emotion/images/jxface2.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/emotion/images/neweditor-tab-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/emotion/images/neweditor-tab-bg.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/emotion/images/tface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/emotion/images/tface.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/emotion/images/wface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/emotion/images/wface.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/emotion/images/yface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/emotion/images/yface.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/help/help.css:
--------------------------------------------------------------------------------
1 | .wrapper{width: 370px;margin: 10px auto;zoom: 1;}
2 | .tabbody{height: 360px;}
3 | .tabbody .panel{width:100%;height: 360px;position: absolute;background: #fff;}
4 | .tabbody .panel h1{font-size:26px;margin: 5px 0 0 5px;}
5 | .tabbody .panel p{font-size:12px;margin: 5px 0 0 5px;}
6 | .tabbody table{width:90%;line-height: 20px;margin: 5px 0 0 5px;;}
7 | .tabbody table thead{font-weight: bold;line-height: 25px;}
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/image/images/alignicon.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/image/images/alignicon.jpg
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/image/images/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/image/images/bg.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/image/images/icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/image/images/icons.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/image/images/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/image/images/icons.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/image/images/image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/image/images/image.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/image/images/progress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/image/images/progress.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/image/images/success.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/image/images/success.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/image/images/success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/image/images/success.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/addimg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/addimg.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/brush.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/brush.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/delimg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/delimg.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/delimgH.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/delimgH.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/empty.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/empty.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/emptyH.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/emptyH.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/eraser.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/eraser.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/redo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/redo.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/redoH.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/redoH.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/scale.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/scale.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/scaleH.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/scaleH.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/size.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/size.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/undo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/undo.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/undoH.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/scrawl/images/undoH.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/table/dragicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/table/dragicon.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/template/images/bg.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/template/images/bg.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/template/images/pre0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/template/images/pre0.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/template/images/pre1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/template/images/pre1.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/template/images/pre2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/template/images/pre2.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/template/images/pre3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/template/images/pre3.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/template/images/pre4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/template/images/pre4.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/bg.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/center_focus.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/center_focus.jpg
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/file-icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/file-icons.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/file-icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/file-icons.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/icons.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/icons.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/image.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/left_focus.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/left_focus.jpg
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/none_focus.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/none_focus.jpg
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/progress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/progress.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/right_focus.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/right_focus.jpg
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/success.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/success.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/video/images/success.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/wordimage/fClipboard_ueditor.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/wordimage/fClipboard_ueditor.swf
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/wordimage/imageUploader.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/dialogs/wordimage/imageUploader.swf
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/addimage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/addimage.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/alldeletebtnhoverskin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/alldeletebtnhoverskin.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/alldeletebtnupskin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/alldeletebtnupskin.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/background.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/button.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/copy.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/deletedisable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/deletedisable.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/deleteenable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/deleteenable.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/listbackground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/listbackground.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/localimage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/localimage.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/music.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/music.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/rotateleftdisable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/rotateleftdisable.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/rotateleftenable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/rotateleftenable.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/rotaterightdisable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/rotaterightdisable.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/rotaterightenable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/rotaterightenable.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/upload.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/lang/en/images/upload.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/lang/zh-cn/images/copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/lang/zh-cn/images/copy.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/lang/zh-cn/images/localimage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/lang/zh-cn/images/localimage.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/lang/zh-cn/images/music.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/lang/zh-cn/images/music.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/lang/zh-cn/images/upload.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/lang/zh-cn/images/upload.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/anchor.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/anchor.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/arrow.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/arrow_down.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/arrow_up.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/button-bg.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/button-bg.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/cancelbutton.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/cancelbutton.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/charts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/charts.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/cursor_h.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/cursor_h.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/cursor_h.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/cursor_h.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/cursor_v.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/cursor_v.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/cursor_v.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/cursor_v.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/dialog-title-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/dialog-title-bg.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/filescan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/filescan.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/highlighted.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/highlighted.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/icons-all.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/icons-all.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/icons.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/icons.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/loaderror.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/loaderror.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/loading.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/lock.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/lock.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/neweditor-tab-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/neweditor-tab-bg.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/pagebreak.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/pagebreak.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/scale.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/scale.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/sortable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/sortable.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/spacer.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/spacer.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/sparator_v.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/sparator_v.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/table-cell-align.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/table-cell-align.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/tangram-colorpicker.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/tangram-colorpicker.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/toolbar_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/toolbar_bg.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/unhighlighted.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/unhighlighted.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/upload.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/upload.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/videologo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/videologo.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/word.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/word.gif
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/wordpaste.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ysl69/health/5d99efd45069247b0ca00d6f45cd984d8ea0608c/healthmobile_web/src/main/webapp/plugins/uedter/themes/default/images/wordpaste.png
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/themes/iframe.css:
--------------------------------------------------------------------------------
1 | /*可以在这里添加你自己的css*/
2 |
--------------------------------------------------------------------------------
/healthmobile_web/src/main/webapp/plugins/uedter/third-party/highcharts/modules/heatmap.js:
--------------------------------------------------------------------------------
1 | (function(b){var k=b.seriesTypes,l=b.each;k.heatmap=b.extendClass(k.map,{colorKey:"z",useMapGeometry:!1,pointArrayMap:["y","z"],translate:function(){var c=this,b=c.options,i=Number.MAX_VALUE,j=Number.MIN_VALUE;c.generatePoints();l(c.data,function(a){var e=a.x,f=a.y,d=a.z,g=(b.colsize||1)/2,h=(b.rowsize||1)/2;a.path=["M",e-g,f-h,"L",e+g,f-h,"L",e+g,f+h,"L",e-g,f+h,"Z"];a.shapeType="path";a.shapeArgs={d:c.translatePath(a.path)};typeof d==="number"&&(d>j?j=d:d
2 |
3 | Hello World!
4 |
5 |