Daily Archives: 15.11.2013
AngularJS: добавить заголовки ко всем запросам к серверу
1 2 3 4 5 6 7 |
angular.module("YourAppModule", []).config(["$httpProvider", function($httpProvider) { $httpProvider.defaults.headers.common['custom'] = 'custom_val'; $httpProvider.defaults.headers.put['Content-Type'] = 'application/x-www-form-urlencoded'; $httpProvider.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded'; }]); |
Grunt-таск для избавления от лишних стилей в css
https://github.com/addyosmani/grunt-uncss Конфиг примерно такой:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
uncss: { dist: { files: { 'dist/css/tidy.css': ['app/index.html','app/about.html'] } }, options: { compress:true } } processhtml: { dist: { files: { 'dist/index.html': ['app/index.html'], 'dist/about.html': ['app/about.html'] } } } |