Created
February 21, 2015 17:52
-
-
Save alexpyoung/29be01c1f83ba6d93dcd to your computer and use it in GitHub Desktop.
Breakpoints
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 pkg = require('../../package.json'); | |
/* Fetch angular from the browser scope */ | |
var angular = window.angular; | |
var IntelligenceWebClient = angular.module(pkg.name); | |
// Values in px | |
var BREAKPOINTS = { | |
MOBILE: 1024, | |
MD_SCREEN_SM: 600, | |
MD_SCREEN_MD: 960, | |
MD_SCREEN_LG: 1200 | |
}; | |
module.exports = BREAKPOINTS; | |
IntelligenceWebClient.constant('BREAKPOINTS', BREAKPOINTS); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment