Skip to content
This repository was archived by the owner on Sep 7, 2021. It is now read-only.

Commit 6d5be7f

Browse files
committed
2 parents d6375a4 + c4ee090 commit 6d5be7f

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "adminlte-reactjs",
3-
"version": "1.0.5",
3+
"version": "1.0.6",
44
"repository": {
55
"type": "git",
66
"url": "http://github.com/booleanhunter/ReactJS-AdminLTE"

public/dist/js/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ $.AdminLTE.options = {
5656
//BoxRefresh Plugin
5757
enableBoxRefresh: true,
5858
//Bootstrap.js tooltip
59-
enableBSToppltip: true,
59+
enableBSToppltip: false,
6060
BSTooltipSelector: "[data-toggle='tooltip']",
6161
//Enable Fast Click. Fastclick.js creates a more
6262
//native touch experience with touch devices. If you
@@ -743,4 +743,4 @@ function _init() {
743743
}
744744
});
745745
};
746-
}(jQuery));
746+
}(jQuery));

public/dist/js/app.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/timeline/timeline.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ define (
2121
timelineElement.items.map(function(item, i){
2222
timelineInfo.push(
2323
<TimelineItem
24-
key={"item"+iterator+i}
24+
key={"item"+iterator+'.'+i}
2525
icon={item.icon}
2626
iconTheme={item.iconTheme}
2727
time= {item.time}

views/dashboard.html

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@
5252
</script>
5353
-->
5454

55-
<!-- AdminLTE App -->
56-
57-
<!-- <script src="dist/js/app.js"></script>
58-
// <script src="dist/js/pages/dashboard.js"></script>
59-
// <script src="dist/js/demo.js"></script> -->
55+
<!-- AdminLTE App -->
56+
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
57+
<script src="dist/js/app.js"></script>
58+
<!-- <script src="dist/js/pages/dashboard.js"></script>
59+
<script src="dist/js/demo.js"></script> -->
6060

6161

6262
<script src="/dist/js/vendors.js"></script>
@@ -66,10 +66,11 @@
6666

6767
<!--Use this only in development, while using React Hot Loader -->
6868
<!--
69+
<script src="http://localhost:8080/dist/js/app.js"></script>
6970
<script src="http://localhost:8080/dist/js/vendors.js"></script>
7071
<script src="http://localhost:8080/dist/js/chartVendors.bundle.js"></script>
7172
<script src="http://localhost:8080/dist/js/dashboardV1.bundle.js"></script> -->
7273

7374
</body>
7475

75-
</html>
76+
</html>

0 commit comments

Comments
 (0)