- version
- components list
- theme vars
- scope for the theme (optional)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { bgColorDefault: '#e6e6e6', | |
| borderColorDefault: '#d3d3d3', | |
| fcDefault: '#555555', | |
| bgColorHover: '#dadada', | |
| borderColorHover: '#999999', | |
| fcHover: '#212121', | |
| bgColorActive: '#ffffff', | |
| borderColorActive: '#aaaaaa', | |
| fcActive: '#212121', | |
| bgColorHeader: '#cccccc', |
$ node
var themeGallery = require("./lib/themeroller.themegallery");
themeGallery.map(function(t) {return {name: t.name, vars: t.vars}});
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Files() { | |
| var array = []; | |
| array.push.apply( array, arguments ); | |
| array.__proto__ = Files.prototype; | |
| return array; | |
| } | |
| Files.prototype = []; | |
| Files.prototype.into = function() { | |
| return this[ this.length - 1 ]; | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/build/release/release.js b/build/release/release.js | |
| index 3cbee64..39cdc1f 100644 | |
| --- a/build/release/release.js | |
| +++ b/build/release/release.js | |
| @@ -119,15 +119,7 @@ function getVersions() { | |
| minor = parseInt( parts[ 1 ], 10 ); | |
| patch = parseInt( parts[ 2 ], 10 ); | |
| - // TODO: handle 1.10.0 | |
| - // Also see comment above about pre-releases |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { categories: | |
| [ { slug: 'uncategorized', pages: [], posts: [] }, | |
| { slug: 'effects', | |
| pages: [ 'color-animation.html', 'easings.html' ], | |
| posts: | |
| [ 'addClass.html', | |
| 'blind-effect.html', | |
| 'bounce-effect.html', | |
| 'clip-effect.html', | |
| 'drop-effect.html', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- a/grunt.js | |
| +++ b/grunt.js | |
| @@ -66,7 +66,8 @@ grunt.registerTask( "manifest", "Generate categories.json manifest file", functi | |
| return done( false ); | |
| } | |
| - grunt.file.write( grunt.config( "wordpress.dir" ) + "/categories.json", JSON.stringify( categories, null, "\t" ) + "\n" ); | |
| + grunt.file.write( grunt.config( "wordpress.dir" ) + "/categories.json", | |
| + JSON.stringify( categories, null, "\t" ) + "\n" ); | |
| done(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Globalize.cultures[ "default" ] = { | |
| // -> this is generated | |
| name: "en", | |
| // -> main.en.localeDisplayNames.languages.<langName>, eg. langName = "pt-BR" | |
| englishName: "English", | |
| // -> main.<langName>.localeDisplayNames.languages.<langName>, eg. langName = "pt-BR" | |
| nativeName: "English", |