Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eugef committed Jun 28, 2016
1 parent 245c528 commit 814c39c
Show file tree
Hide file tree
Showing 14 changed files with 470 additions and 132 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
Angular-xeditable changelog
=============================

Version 0.2.0 Jun 28, 2016

----------------------------
[enh #491] Added popover functionality (ckosloski)
[fix #489] Fix - Memory leak when ending editing by destroying the scope (kenfdev)
[enh #479] Added ability to add a label to an input (ckosloski)
[enh #473] Added support for datetime-local input (ckosloski)
[bug #464] Added ability to add more then one editable-ui-select component on the same page (julia-k)
[enh #463] Added on-change support for bsdate and placeholder support for editable-select (ckosloski)
[bug #456] Fixed bsdate warnings with latest ui-bootstrap (ckosloski)
[bug #454] Fix finding form controller when elements not yet in DOM (bostrom)
[bug #366] Make 'e-form' publish local $form even if specify object property (hshn)


Version 0.1.12 Apr 14, 2016
----------------------------
[enh #448] Add support for ui-select (ckosloski)
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-xeditable",
"version": "0.1.12",
"version": "0.2.0",
"description": "Edit in place for AngularJS",
"author": "https://github.com/vitalets",
"license": "MIT",
Expand Down
49 changes: 49 additions & 0 deletions dist/css/xeditable.css
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,53 @@ a.editable-empty:focus {
text-decoration: none;
}

/* editable popover */
.popover-wrapper a {
/* make the link always show up */
display: inline !important;
}

.popover-wrapper {
/* make absolutely positioned children constrained to this box*/
display: inline;
position: relative;
}

.popover-wrapper form {
position: absolute;
top: -53px;
background: #FFF;
border: 1px solid #AAA;
border-radius: 5px;
padding: 7px;
width: auto;
display: inline-block;
left: 50%;
margin-left: -110px;
z-index: 101;
}

.popover-wrapper form:before {
content:"";
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid #AAA;
position:absolute;
bottom:-10px;
left:100px;
}

.popover-wrapper form:after {
content:"";
width:0;
height:0;
border-left: 9px solid transparent;
border-right: 9px solid transparent;
border-top: 9px solid #FFF;
position:absolute;
bottom:-9px;
left:101px;
}

6 changes: 3 additions & 3 deletions dist/css/xeditable.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 814c39c

Please sign in to comment.