Skip to content

Commit

Permalink
Merge branch 'release-5.17.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
hirokiterashima committed Oct 2, 2020
2 parents 0ca4480 + d025def commit 9b2be8f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 19 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wise",
"version": "5.17.1",
"version": "5.17.2",
"description": "Web-based Inquiry Science Environment",
"main": "app.js",
"browserslist": [
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<artifactId>wise</artifactId>
<packaging>war</packaging>
<name>Web-based Inquiry Science Environment</name>
<version>5.17.1</version>
<version>5.17.2</version>
<url>http://wise5.org</url>
<licenses>
<license>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.17.1
5.17.2
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ class TableAuthoringController extends TableController {
ProjectAssetService: ProjectAssetService;

static $inject = [
'$anchorScroll',
'$filter',
'$location',
'$injector',
'$mdDialog',
'$q',
'$rootScope',
Expand All @@ -30,10 +29,8 @@ class TableAuthoringController extends TableController {
];

constructor(
$anchorScroll,
$filter,
$injector,
$location,
$mdDialog,
$q,
$rootScope,
Expand All @@ -52,10 +49,8 @@ class TableAuthoringController extends TableController {
UtilService
) {
super(
$anchorScroll,
$filter,
$injector,
$location,
$mdDialog,
$q,
$rootScope,
Expand Down
10 changes: 1 addition & 9 deletions src/main/webapp/wise5/components/table/tableController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ import ComponentController from '../componentController';
import { TableService } from './tableService';

class TableController extends ComponentController {
$anchorScroll: any;
$location: any;
$q: any;
TableService: TableService;
allowedConnectedComponentTypes: any[];
Expand Down Expand Up @@ -35,10 +33,8 @@ class TableController extends ComponentController {
dataExplorerXColumn: number;

static $inject = [
'$anchorScroll',
'$filter',
'$injector',
'$location',
'$mdDialog',
'$q',
'$rootScope',
Expand All @@ -57,10 +53,8 @@ class TableController extends ComponentController {
];

constructor(
$anchorScroll,
$filter,
$injector,
$location,
$mdDialog,
$q,
$rootScope,
Expand Down Expand Up @@ -95,8 +89,6 @@ class TableController extends ComponentController {
StudentDataService,
UtilService
);
this.$anchorScroll = $anchorScroll;
this.$location = $location;
this.$q = $q;
this.TableService = TableService;

Expand Down Expand Up @@ -327,7 +319,7 @@ class TableController extends ComponentController {
}

registerStudentWorkSavedToServerListener() {
this.studentWorkSavedToServerSubscription =
this.studentWorkSavedToServerSubscription =
this.StudentDataService.studentWorkSavedToServer$.subscribe((args: any) => {
const componentState = args.studentWork;
if (this.isForThisComponent(componentState)) {
Expand Down

0 comments on commit 9b2be8f

Please sign in to comment.