Slava
Slava
It works after installing locally, thanks. Sadly, this is not mentioned in the docs.
Hello! Thank you for this great module. However, I've installed this module only for `prefer-const-enum` rule just to find out that it's not actually working. I'm defining all my types...
Could you elaborate on this issue please? Thank you!
The workaround I've found so far is this: ``` javascript $scope.formData = pickProperties($rootScope.user, [ 'firstName', 'lastName', 'patronymic', 'skypeName' ]); $timeout(function () { $scope.formData.phoneNumber = $rootScope.user.phoneNumber; }, 300); ``` It looks...
I've found another issue with this module. For some reason the component waits for all scripts including third-party widgets to initialize before it will be initialized itself. If, for some...
Hello guys! I was working with developers of `intl-tel-input` in order to present you a much better integration module for Angular.js: https://github.com/betsol/ng-intl-tel-input, feel free to use it and let me...
Hello! I'm having exactly the same issue. I want to specify the base path from which all stylesheet files should be resolved. Because I have nested HTML files and I...
Wow, I've managed to resolve the issue after looking in this module's source code. I've specified the base path the following way: ``` .pipe(gulpInlineCss({ url: 'file://' + __dirname + '/dist/',...
I can confirm that bots are not responding.
Angular expression is not evaluated for an element when scrolling too fast by dragging the scrollbar
I think one approach would be to interpolate scrolling events between last two known scrolling positions, however, it could be difficult to implement properly.