Skip to content

Commit

Permalink
Apply set of fixes to ui-select in relation to angular-ui/ui-select#2025
Browse files Browse the repository at this point in the history
  • Loading branch information
evilaliv3 committed Aug 19, 2019
1 parent d68c48b commit 00d7643
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions client/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,27 @@ module.exports = function(grunt) {
}
},
pass2: {
files: {
"tmp/js/scripts.js": "tmp/js/scripts.js"
},
options: {
replacements: [
{
pattern: "style=\"outline: 0;\"",
replacement: "ng-style=\"{\\'outline\\': \\'0\\'}\""
},
{
pattern: "style=\"margin-right: 10px\"",
replacement: "ng-style=\"{\\'margin-right\\': \\'10px\\'}\""
},
{
pattern: "style=\"width: 34px;\"",
replacement: "ng-style=\"{\\'width\\': \\'34px\\'}\""
}
]
}
},
pass3: {
files: {
"tmp/index.html": "tmp/index.html"
},
Expand Down

0 comments on commit 00d7643

Please sign in to comment.