Skip to content

Commit 0967240

Browse files
Portugal, MarceloPortugal, Marcelo
Portugal, Marcelo
authored and
Portugal, Marcelo
committed
gh-pages v4.6.6
1 parent 37cfb7c commit 0967240

File tree

256 files changed

+69200
-191
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

256 files changed

+69200
-191
lines changed

docs/js/docs.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,14 @@ docsApp.directive.ngHtmlWrapLoaded = function(reindentCode, templateMerge, loade
3232
html = "<!doctype html>\n<html ng-app{{module}}>\n <head>\n{{head:4}} </head>\n <body>\n{{body:4}} </body>\n</html>";
3333

3434
angular.forEach(loadedUrls.base, function(dep) {
35-
properties.head += '<script src="' + dep + '"></script>\n';
35+
if (!dep) return;
36+
var ext = dep.split(/\./).pop();
37+
38+
if (ext === 'css') {
39+
properties.head += '<link rel="stylesheet" href="' + dep + '" type="text/css">\n';
40+
} else if(ext === 'js') {
41+
properties.head += '<script src="' + dep + '"></script>\n';
42+
}
3643
});
3744

3845
angular.forEach((attr.ngHtmlWrapLoaded || '').split(' '), function(dep) {

index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ <h1 class="text-center">Angular UI Grid</h1>
7676
Code on Github
7777
</a>
7878

79-
<a class="btn btn-danger btn-large" href="https://github.com/angular-ui/ui-grid.info/tree/gh-pages/release" title="Download 4.6.4">
79+
<a class="btn btn-danger btn-large" href="https://github.com/angular-ui/ui-grid.info/tree/gh-pages/release" title="Download 4.6.6">
8080
<i class="fa fa-download fa-fw"></i>
81-
<!-- Download <small>( 4.6.4 / 4.6.4 )</small> --> <!-- TODO(c0bra): note: not showing stable version till 3.0.0 is released -->
81+
<!-- Download <small>( 4.6.6 / 4.6.6 )</small> --> <!-- TODO(c0bra): note: not showing stable version till 3.0.0 is released -->
8282

83-
Download <small>( 4.6.4 )</small>
83+
Download <small>( 4.6.6 )</small>
8484
</a>
8585

8686
<a class="btn btn-success btn-large" href="/docs/#!/tutorial" title="Tutorial">

less/elements.less

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
// ---------------------------------------------------
2-
// LESS Elements 0.9
3-
// ---------------------------------------------------
4-
// A set of useful LESS mixins
5-
// More info at: http://lesselements.com
6-
// ---------------------------------------------------
1+
/*---------------------------------------------------
2+
LESS Elements 0.9
3+
---------------------------------------------------
4+
A set of useful LESS mixins
5+
More info at: http://lesselements.com
6+
---------------------------------------------------*/
77

88
.gradient(@color: #F5F5F5, @start: #EEE, @stop: #FFF) {
99
background: @color;

less/variables.less

+29-14
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,49 @@
11

2-
// This file contains variable declarations (do not remove this line)
2+
/* This file contains variable declarations (do not remove this line) */
33

4-
// VARIABLES (DO NOT REMOVE THESE COMMENTS)
4+
/*-- VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
55

6-
// @section Grid styles
6+
/**
7+
* @section Grid styles
8+
*/
79
@gridBorderWidth: 1px;
810
@gridBorderRadius: 0px;
911
@borderColor: #d4d4d4;
1012
@focusColor: #b3c4c7;
1113
@activeColor: darken(@focusColor, 8%);
1214

13-
// @section Header styles
15+
/**
16+
* @section Header styles
17+
*/
1418

15-
// @description Colors for header gradient
19+
/** @description Colors for header gradient */
1620
@headerBackgroundColor: #f3f3f3;
1721
@headerGradientStart: #eee;
1822
@headerGradientStop: #fff;
1923
@headerVerticalBarColor: @borderColor;
2024

21-
// @section Grid body styles
25+
/**
26+
* @section Grid body styles
27+
*/
2228

23-
// @description Colors used for row alternation
29+
/** @description Colors used for row alternation */
2430
@verticalBarColor: @borderColor;
2531
@rowColorHovered: #d5eaee;
2632
@rowColorEven: #f3f3f3;
2733
@rowColorOdd: #fdfdfd;
2834

29-
// @section Grid Menu colors
35+
/**
36+
* @section Grid Menu colors
37+
*/
3038
@menuBackgroundColor: #fff;
3139
@menuHoverColor: @focusColor;
3240
@menuSelectedColor: @activeColor;
3341
@menuTextColor: #000;
3442

35-
// @section Sort arrow colors
43+
/**
44+
* @section Sort arrow colors
45+
*/
46+
3647
@sortArrowBackgroundColor: #aaaaaa;
3748
@sortArrowBorderColor: #777777;
3849

@@ -49,7 +60,9 @@
4960
// Color to use for enabled or selected settings/items/cells, etc. Should probably override the one above
5061
@selectedColor: @activeColor;
5162

52-
// @section Scrollbar styles
63+
/**
64+
* @section Scrollbar styles
65+
*/
5366
@scrollbarBackground: darken(@rowColorEven, 15%);
5467
@scrollbarBackgroundHover: darken(@scrollbarBackground, 15%);
5568
@scrollbarBackgroundScrolling: darken(@scrollbarBackgroundHover, 15%);
@@ -59,17 +72,19 @@
5972
@scrollbarBorder: 1px solid darken(@scrollbarBackground, 15%);
6073
@scrollbarBorderScrolling: 1px solid darken(@scrollbarBackgroundScrolling, 15%);
6174

62-
// Border to be applied to editors when the input value or invalid
75+
//Border to be applied to editors when the input value or invalid
6376
@invalidValueBorder: 1px solid #fc8f8f;
6477
@validValueBorder: 1px solid @borderColor;
6578

66-
// Pagination controls
79+
//Pagination controls
6780
@paginationButtonColor: @headerGradientStart;
6881
@paginationButtonBackgroundColor: @headerBackgroundColor;
6982
@paginationButtonBorderColor: #ccc;
7083

7184

72-
// @section font library path
85+
/**
86+
* @section font library path
87+
*/
7388
@font-path: 'fonts/';
7489

75-
// END VARIABLES (DO NOT REMOVE THESE COMMENTS)
90+
/*-- END VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/

release/4.6.6/fonts/ui-grid.eot

10.1 KB
Binary file not shown.

release/4.6.6/fonts/ui-grid.svg

+56
Loading

release/4.6.6/fonts/ui-grid.ttf

9.92 KB
Binary file not shown.

release/4.6.6/fonts/ui-grid.woff

5.59 KB
Binary file not shown.

0 commit comments

Comments
 (0)