Skip to content
This repository was archived by the owner on Dec 9, 2021. It is now read-only.

Commit 93fef9e

Browse files
committed
0.14.9
1 parent c30f0d3 commit 93fef9e

File tree

6 files changed

+5
-6
lines changed

6 files changed

+5
-6
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,8 @@ _onClickHandler(event) {
252252

253253
## Release History
254254

255+
* 2016-13-15 v0.14.9 Fix TypeScript file issues.
256+
255257
* 2016-13-15 v0.14.8 Util - Fix issue with deletePropertyFromObject.
256258

257259
* 2016-12-15 v0.14.7 BaseModel - Add the ability to pass options in as a second parameter. Supports { expand: true } so nested base model class will be instantiated instead of nulled out.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "structurejs",
3-
"version": "0.14.8",
3+
"version": "0.14.9",
44
"dependencies": {
55
"jquery": "*",
66
"handlebars": "*"

js/BaseObject.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
///<reference path='_declare/jquery.eventListener.d.ts'/>
21
(function (factory) {
32
if (typeof module === 'object' && typeof module.exports === 'object') {
43
var v = factory(require, exports); if (v !== undefined) module.exports = v;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "structure-js",
3-
"version": "0.14.8",
3+
"version": "0.14.9",
44
"description": "A class based utility library for building modular and scalable web platform applications. Features opt-in classes and utilities which provide a solid foundation and toolset to build your next project.",
55
"url": "https://github.com/codeBelt/StructureJS",
66
"repository": "https://github.com/codeBelt/StructureJS",

ts/BaseObject.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
///<reference path='_declare/jquery.eventListener.d.ts'/>
2-
31
import Util from './util/Util';
42

53
/**

ts/event/BaseEvent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ class BaseEvent extends BaseObject
461461
{
462462
if (this.hasOwnProperty(key))
463463
{
464-
clonedBaseModel[key] = this[key];
464+
(<any>clonedBaseModel)[key] = this[key];
465465
}
466466
}
467467

0 commit comments

Comments
 (0)