Skip to content

Commit

Permalink
feat(web-render): remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
gguoyu committed Aug 30, 2023
1 parent 2737544 commit 9237ee0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,25 +76,13 @@ module.exports = {
},
],
},
// {
// test: /\.(png|jpe?g|gif)$/i,
// use: [{
// loader: 'file-loader',
// options: {
// name: '[name].[ext]',
// outputPath: 'assets/',
// },
// }],
// },
{
test: /\.(png|jpe?g|gif)$/i,
use: [{
loader: 'url-loader',
loader: 'file-loader',
options: {
limit: true,
// fallback: 'file-loader',
// name: '[name].[ext]',
// outputPath: 'assets/',
name: '[name].[ext]',
outputPath: 'assets/',
},
}],
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ import { HippyElement } from './hippy-element';
export class HippyInputElement extends HippyElement {
/**
* show input menu
* @deprecated not implemented method
* @deprecated
*/
public showInputMenu(): void {
// noop
}

/**
* hide input menu
* @deprecated not implemented method
* @deprecated
*/
public hideInputMenu(): void {
// noop
Expand Down

0 comments on commit 9237ee0

Please sign in to comment.