Created
January 7, 2015 12:34
-
-
Save alexcastillo/9a074bdc03eb1e4c858b to your computer and use it in GitHub Desktop.
AngularCSS - SMQ
This file contains 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
$routeProvider | |
.when('/tickets', { | |
templateUrl: 'tickets/tickets.html', | |
controller: 'ticketsCtrl', | |
css: [ | |
{ | |
href: 'tickets/tickets.mobile.css', | |
media: '(max-width: 480px)' | |
}, { | |
href: 'tickets/tickets.tablet.css', | |
media: '(min-width: 768px) and (max-width: 1024px)' | |
}, { | |
href: 'tickets/tickets.desktop.css', | |
media: '(min-width: 1224px)' | |
} | |
] | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment