pyc-website

main website for pyc inc.

git clone https://9o.is/git/pyc-website.git

Variables.js

(310B)


      1 angular.module("Variables", [])
      2 
      3 .controller("VariablesCtrl", ['$scope', function($scope) {
      4 	$scope.PASSWORD_REGEXP = /^(?=.*[^a-zA-Z])\S{8,}$/;
      5 	$scope.UNSAFE_URL_REGEXP = /[-a-zA-Z0-9@:%_\+.~#?&//=]{2,256}\.[a-z]{2,4}\b(\/[-a-zA-Z0-9@:%_\+.~#?&//=]*)?/;
      6 	$scope.screen_xs = 480;
      7 	$scope.screen_md = 992;
      8 }]);