This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Sets up a DOM MutationObserver that watches for elements using undefined CSS | |
| * class names. Performance should be pretty good, but it's probably best to | |
| * avoid using this in production. | |
| * | |
| * Usage: | |
| * | |
| * import cssCheck from './checkForUndefinedCSSClasses.js' | |
| * | |
| * // Call before DOM renders (e.g. in <HEAD> or prior to React.render()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM java:8-jdk | |
| MAINTAINER Jumper Chen <jumperchen@potix.com> | |
| ENV JAVA_HOME /usr/lib/jvm/java-8-openjdk-amd64 | |
| # Config to get to install git, maven, and tomcat7 | |
| RUN apt-get update && apt-get install -y --force-yes git maven tomcat7 | |
| VOLUME /zksandbox | |
| # copy your zksandbox (depends on where the Dockerfile located) folder |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.zkoss.mvvm.examples.duallistbox; | |
| import java.util.ArrayList; | |
| import java.util.HashSet; | |
| import java.util.List; | |
| import java.util.Set; | |
| import org.zkoss.bind.annotation.BindingParam; | |
| import org.zkoss.bind.annotation.Command; | |
| import org.zkoss.bind.annotation.NotifyChange; |