Skip to content

Commit 1eb7400

Browse files
committed
Rename CSS classes
1 parent ebe08d9 commit 1eb7400

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
/* See license.txt for terms of usage */
22

3-
.kind-jQueryObject .cm-variable {
3+
.kind-jQuery .cm-variable {
44
color: #4B0082;
55
}
66

7-
.kind-jQueryObject .jQueryCache {
7+
.kind-jQuery .cache {
88
font-size: 11px;
99
color: #4B0082;
1010
margin-left: 2px;
11+
cursor: pointer;
1112
}

lib/firequery-actor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ var FireQueryActor = ActorClass(
133133
}
134134

135135
let preview = grip.preview = {
136-
kind: "jQueryObject",
136+
kind: "jQuery",
137137
};
138138

139139
let raw = actor.obj.unsafeDereference();

lib/jquery-renderer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const XHTML_NS = "http://www.w3.org/1999/xhtml";
2323
2424
*/
2525
var JQueryRenderer = {
26-
byKind: "jQueryObject",
26+
byKind: "jQuery",
2727

2828
render: function() {
2929
let { preview } = this.objectActor;
@@ -99,7 +99,7 @@ var JQueryRenderer = {
9999
}
100100

101101
let cache = this.document.createElementNS(XHTML_NS, "span");
102-
cache.className = "jQueryCache"
102+
cache.className = "cache"
103103
cache.innerHTML = "✉"
104104
parentNode.appendChild(cache);
105105
}

0 commit comments

Comments
 (0)