Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ module.exports = function (grunt) {
'src/thirdparty/CodeMirror2/addon/selection/active-line.js',
'src/thirdparty/mustache/mustache.js',
'src/thirdparty/path-utils/path-utils.min',
'src/thirdparty/less-1.4.2.min.js'
'src/thirdparty/less-1.7.0.min.js'
],
helpers : [
'test/spec/PhantomHelper.js'
Expand Down
3 changes: 2 additions & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@

<!-- Pre-load third party scripts that cannot be async loaded. -->
<!-- build:js thirdparty/thirdparty.min.js -->
<script src="thirdparty/less-1.4.2.min.js"></script>
<script src="thirdparty/less-config.js"></script>
<script src="thirdparty/less-1.7.0.min.js"></script>
<script src="thirdparty/mustache/mustache.js"></script>
<script src="thirdparty/jquery-2.1.0.min.js"></script>
<!-- endbuild -->
Expand Down
11 changes: 0 additions & 11 deletions src/thirdparty/less-1.4.2.min.js

This file was deleted.

16 changes: 16 additions & 0 deletions src/thirdparty/less-1.7.0.min.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions src/thirdparty/less-config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
var less = {
logLevel: 2
};
2 changes: 1 addition & 1 deletion test/SpecRunner.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<script src="../src/thirdparty/jquery-2.1.0.min.js"></script>
<script src="../src/thirdparty/mustache/mustache.js"></script>
<script src="../src/thirdparty/path-utils/path-utils.js"></script>
<script src="../src/thirdparty/less-1.4.2.min.js"></script>
<script src="../src/thirdparty/less-1.7.0.min.js"></script>
<script src="thirdparty/bootstrap2/js/bootstrap.min.js"></script>

<!-- All other scripts are loaded through require. -->
Expand Down