mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 07:47:54 +00:00
variant: don't allow auto mode variants to be downloaded #679
This commit is contained in:
parent
74a9c4d9b3
commit
ff978f3be1
1 changed files with 6 additions and 2 deletions
|
@ -254,7 +254,12 @@ var variants = {
|
||||||
},
|
},
|
||||||
|
|
||||||
getStylesheet: function(){
|
getStylesheet: function(){
|
||||||
this.download( this.generateStylesheet(), 'text/css', 'theme-' + this.customvariantname + '.css' );
|
var style = this.generateStylesheet();
|
||||||
|
if( !style ){
|
||||||
|
alert( 'There is nothing to be generated as auto mode variants will be generated by Hugo' );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.download( style, 'text/css', 'theme-' + this.customvariantname + '.css' );
|
||||||
},
|
},
|
||||||
|
|
||||||
adjustCSSRules: function(selector, props, sheets) {
|
adjustCSSRules: function(selector, props, sheets) {
|
||||||
|
@ -427,7 +432,6 @@ var variants = {
|
||||||
read_style = write_style;
|
read_style = write_style;
|
||||||
}
|
}
|
||||||
if( !read_style ){
|
if( !read_style ){
|
||||||
alert( 'An auto mode variant will be generated by Hugo and must not be stored in a separate stylesheet' );
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue