-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Temp8 Fix for #4011 #4560
Temp8 Fix for #4011 #4560
Changes from 27 commits
988be21
60fa931
13a326b
2e40911
44b1a73
3f13baa
a20fa3d
9f2280d
6f67318
592d8db
564117e
89903a6
2bfa81c
080ace9
4fcf2ce
8a56b3d
a70cb51
13a8548
c56b886
7e413ed
851c844
dfe6f20
1eb55a8
e73cf59
043f4f3
d0d5d37
b4885f4
d58106d
76e2f2f
a9f5d3c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<div class="umb-rte" | ||
id="{{uniqueId}}"> | ||
id="{{textAreaHtmlId}}"> | ||
</div> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
<div ng-controller="Umbraco.PropertyEditors.Grid.EmbedController"> | ||
|
||
<div class="umb-editor-placeholder" ng-click="setEmbed()" ng-if="trustedValue === null"> | ||
<div class="umb-editor-placeholder" ng-click="setEmbed()" ng-if="hasEmbed() === false"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should not be a function call, it should be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Turns out, it has to be |
||
<i class="icon icon-movie-alt"></i> | ||
<div class="help-text"><localize key="grid_clickToEmbed">Click to embed</localize></div> | ||
</div> | ||
|
||
<div ng-if="control.value" ng-bind-html="trustedValue"></div> | ||
<div ng-if="control.value" ng-bind-html="embedHtml"></div> | ||
|
||
</div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This word
disgrete
is showing up again in quite a few places in this PR. This is also in the main repo too, see https://github.com/umbraco/Umbraco-CMS/search?q=disgrete&unscoped_q=disgreteCan we fix this up to be
discrete
(assuming that's what it supposed to be?)