Skip to content

Commit

Permalink
Manager update complete
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesDurhamm committed Mar 3, 2019
1 parent 5e4141f commit de1c4c5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
<option value="NC,R,L"{data:option=='NC,R,L'?' selected':''}>[NC,R,L]</option>
<option value="NC,R=301,L"{data:option=='NC,R=301,L'?' selected':''}>[NC,R=301,L]</option>
</select></td>
<td><a href="#" class="button red fa fa-times" title="Remove Rule" onclick="return removeRewriteRule(this);"></a></td>
</tr>
<td class="align-right"><a href="#" class="button red" title="Remove Rule" onclick="return removeRewriteRule(this);">x</a></td>
</tr>
4 changes: 2 additions & 2 deletions dist/packages/manager/Views/pages/htaccess.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@
</thead>
<tfoot>
<tr>
<td colspan="4" class="align-center"><a href="#" class="button" onclick="return addRewriteRule();">Add Rule</a></td>
<td colspan="4" class="align-right"><a href="#" class="button" onclick="return addRewriteRule();">Add Rule</a></td>
</tr>
</tfoot>
<tbody>
Expand All @@ -177,4 +177,4 @@
<button type="submit" class="fat"><i class="fa fa-save"></i> Save Changes</button>
<div class="clear"></div>
</form>
</div>
</div>
12 changes: 6 additions & 6 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var gulp = require( 'gulp' ),
rollupCJS = require( 'rollup-plugin-commonjs' ),
sass = require( 'gulp-sass' ),
concat = require( 'gulp-concat' ),
//jsdoc = require( 'gulp-jsdoc3' ),
jsdoc = require( 'gulp-jsdoc3' ),
sourcemaps = require( 'gulp-sourcemaps' );

var strTwistSource = './src/',
Expand All @@ -25,7 +25,7 @@ var strTwistSource = './src/',
'eqeqeq': 1,
'no-inner-declarations': 2,
'no-irregular-whitespace': 1,
//'valid-jsdoc': 1,
'valid-jsdoc': 1,
'no-dupe-keys': 1,
'valid-typeof': 2,
'no-unreachable': 1,
Expand Down Expand Up @@ -123,10 +123,10 @@ gulp.task( 'setup-css', () => {
.pipe( gulp.dest( strTwistDestination + 'setup/css' ) );
} );

//gulp.task( 'docs', () => {
//return gulp.src( strTwistSource + '**/*.js' )
// .pipe( jsdoc( {opts: {destination: './docs/resources/'}} ) );
//} );
gulp.task( 'docs', () => {
return gulp.src( strTwistSource + '**/*.js' )
.pipe( jsdoc( {opts: {destination: './docs/resources/'}} ) );
} );

gulp.task( 'ajax', ['ajax-js'] );
gulp.task( 'debug', ['debug-js', 'debug-css', 'debug-catch-js'] );
Expand Down

0 comments on commit de1c4c5

Please sign in to comment.