Daily Archives: 15.11.2013
AngularJS: добавить заголовки ко всем запросам к серверу
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 Конфиг примерно такой: 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’] } } }