Soheil Samadzadeh
Soheil Samadzadeh
Hi, I want to use vendor UI kits (such as `bootstrap` for example). So, How can I concatenate those libs' css files into main `style.css` like `concatJs` option? P.S. I...
Hi, I think it should put `browser-sync` as `devDependencies` while generating `package.json` in root directory! And also, It would be better if it compare and then merge existing `package.json` (if...
Code to reproduce issue: app.js ``` javascript var app = angular.module('App', ['ui.sortable']); app.controller('MainCtrl', ['$scope', MainCtrl]); function MainCtrl($scope) { $scope.items = [ {id: 1, type: 'dog', name: 'galardo'}, {id: 2, type:...
Hi there, I think, in case of using `ui-sortable` without `ng-repeat`, `ngModel` in directive definition should be optional and no `log` should be [thrown in console](https://github.com/angular-ui/ui-sortable/blob/master/src/sortable.js#L342). Case of `ng-repeat`-free: ```...