See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope>
is optional
####Rets Rabbit http://www.retsrabbit.com
Rets Rabbit removes the nightmare of importing thousands of real estate listings and photos from RETS or ListHub and gives you an easy to use import and Web API server so you can focus on building your listing search powered website or app.
// as property | |
event.currentTarget.dataset.id | |
// as array element | |
event.currentTarget.dataset['id'] | |
// jquery method | |
$(event.currentTarget).data('id') |
import java.util.regex.Pattern; | |
/** | |
* Detect mobile User Agent | |
* | |
* Adpated from http://detectmobilebrowsers.com/download/cs on 31/05/2012 | |
*/ | |
public class MobileUADetector { | |
private final static Pattern mobile_b = Pattern.compile("android.+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|symbian|treo|up\\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino", Pattern.CASE_INSENSITIVE | Pattern.MULTILINE); |