We can't make this file beautiful and searchable because it's too large.
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
SEASON WEEKEND WEEK STATENAME ACTIVITY_LEVEL ACTIVITY_LEVEL_LABEL | |
2015-16 Jan-09-2016 1 District of Columbia Level 0 Insufficient Data | |
2015-16 Jan-09-2016 1 Virgin Islands Level 0 Insufficient Data | |
2015-16 Jan-16-2016 2 District of Columbia Level 0 Insufficient Data | |
2015-16 Jan-16-2016 2 Virgin Islands Level 0 Insufficient Data | |
2015-16 Jan-23-2016 3 District of Columbia Level 0 Insufficient Data | |
2015-16 Jan-23-2016 3 Virgin Islands Level 0 Insufficient Data | |
2015-16 Jan-30-2016 4 District of Columbia Level 0 Insufficient Data | |
2015-16 Jan-30-2016 4 Virgin Islands Level 0 Insufficient Data | |
2015-16 Feb-06-2016 5 District of Columbia Level 0 Insufficient Data |
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
/** | |
* @jsx React.DOM | |
*/ | |
'use strict'; | |
var React = require('react'); | |
var ReactPropTypes = React.PropTypes; | |
var canUseDOM = require('react/lib/ExecutionEnvironment').canUseDOM; | |
var _ = require('underscore'); |
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
var React = require('react'); | |
var Icon = React.createClass({ | |
displayName:"Icon", | |
propTypes: { | |
icon: React.PropTypes.string.isRequired, | |
size: React.PropTypes.oneOfType([ | |
React.PropTypes.string, | |
React.PropTypes.number | |
]), |
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
var _sliderDiv = $('.galleryholder'), | |
_sliderInterval = null, | |
_mouseX = 0, | |
_windowWidth = $(window).width(); | |
_sliderDiv.on('mousemove',function(e){ | |
_mouseX = e.pageX; | |
}); |
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
function validateMobile(mobile) { | |
var re1 = /\d{8}/g; | |
return re1.test(mobile); | |
} |
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
function validateEmail(email) { | |
var re = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/; | |
return re.test(email); | |
} |
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
function validateNRIC(nric) { | |
var re1 = /^(S|s)\d{7}[A-Za-z]/g; | |
var re2 = /^(A|M)S\d{7}[A-Z]/g; | |
if(re1.test(nric) || re2.test(nric)){ | |
return true; | |
} | |
} |
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
var image_data_cache = {}; | |
function isPointInImage(x, y, img) { | |
var w = img.width; | |
var h = img.height; | |
var parentOffset = $(img).parent().offset(); | |
x = x - parentOffset.left; |