We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e86a648 commit af7facaCopy full SHA for af7faca
demo/code-demo/scripts/index.js
@@ -16,6 +16,8 @@ function OpenSampleSection() {
16
});
17
}
18
19
+ SetActiveStyle("#top-sample");
20
+
21
$(".content").hide();
22
$("#sampleContent").show();
23
@@ -27,6 +29,14 @@ function OpenDocumentationSection() {
27
29
documentationContentLoaded = true;
28
30
31
32
+ SetActiveStyle("#top-docs");
33
34
35
$("#documentationContent").show();
36
+}
37
38
+function SetActiveStyle(id)
39
+{
40
+ $("#top-ul li").removeClass("top-li-active");
41
+ $(id).addClass("top-li-active");
42
0 commit comments