Skip to content

Commit

Permalink
revert whitespace changes
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilipRieck committed Aug 19, 2016
1 parent c91e28d commit 4f9e242
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dist/amd/au-table-pagination.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ define(["exports", "aurelia-framework"], function (exports, _aureliaFramework) {

var _dec, _desc, _value, _class, _descriptor, _descriptor2, _descriptor3, _descriptor4;

var AutPaginationCustomElement = exports.AutPaginationCustomElement = (_dec = (0, _aureliaFramework.bindable)({ defaultBindingMode: _aureliaFramework.bindingMode.twoWay }), (_class = function () {
var AutPaginationCustomElement = exports.AutPaginationCustomElement = (_dec = (0, _aureliaFramework.bindable)({defaultBindingMode: _aureliaFramework.bindingMode.twoWay}), (_class = function () {
function AutPaginationCustomElement() {
_classCallCheck(this, AutPaginationCustomElement);

Expand Down
2 changes: 1 addition & 1 deletion dist/amd/au-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ define(["exports", "aurelia-framework"], function (exports, _aureliaFramework) {
var key = _ref2;


if (next[key]) {
if (next[key] != null) {
var value = next[key].toString().toLowerCase();

if (value.indexOf(this.filterText.toLowerCase()) > -1) {
Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/au-table-pagination.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function _initializerWarningHelper(descriptor, context) {
throw new Error('Decorating class property failed. Please ensure that transform-class-properties is enabled.');
}

var AutPaginationCustomElement = exports.AutPaginationCustomElement = (_dec = (0, _aureliaFramework.bindable)({ defaultBindingMode: _aureliaFramework.bindingMode.twoWay }), (_class = function () {
var AutPaginationCustomElement = exports.AutPaginationCustomElement = (_dec = (0, _aureliaFramework.bindable)({defaultBindingMode: _aureliaFramework.bindingMode.twoWay}), (_class = function () {
function AutPaginationCustomElement() {
_classCallCheck(this, AutPaginationCustomElement);

Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/au-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ var AureliaTableCustomAttribute = exports.AureliaTableCustomAttribute = (_dec =
var key = _ref2;


if (next[key]) {
if (next[key] != null) {
var value = next[key].toString().toLowerCase();

if (value.indexOf(this.filterText.toLowerCase()) > -1) {
Expand Down
2 changes: 1 addition & 1 deletion dist/es2015/au-table-pagination.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function _initializerWarningHelper(descriptor, context) {

import { bindable, bindingMode } from "aurelia-framework";

export let AutPaginationCustomElement = (_dec = bindable({ defaultBindingMode: bindingMode.twoWay }), (_class = class AutPaginationCustomElement {
export let AutPaginationCustomElement = (_dec = bindable({defaultBindingMode: bindingMode.twoWay}), (_class = class AutPaginationCustomElement {
constructor() {
_initDefineProp(this, "currentPage", _descriptor, this);

Expand Down
2 changes: 1 addition & 1 deletion dist/es2015/au-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export let AureliaTableCustomAttribute = (_dec = inject(BindingEngine), _dec2 =
for (let next of toFilter) {
for (let key of this.filterKeys) {

if (next[key]) {
if (next[key] != null) {
let value = next[key].toString().toLowerCase();

if (value.indexOf(this.filterText.toLowerCase()) > -1) {
Expand Down
2 changes: 1 addition & 1 deletion dist/system/au-table-pagination.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ System.register(["aurelia-framework"], function (_export, _context) {
bindingMode = _aureliaFramework.bindingMode;
}],
execute: function () {
_export("AutPaginationCustomElement", AutPaginationCustomElement = (_dec = bindable({ defaultBindingMode: bindingMode.twoWay }), (_class = function () {
_export("AutPaginationCustomElement", AutPaginationCustomElement = (_dec = bindable({defaultBindingMode: bindingMode.twoWay}), (_class = function () {
function AutPaginationCustomElement() {
_classCallCheck(this, AutPaginationCustomElement);

Expand Down
2 changes: 1 addition & 1 deletion dist/system/au-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ System.register(["aurelia-framework"], function (_export, _context) {
var key = _ref2;


if (next[key]) {
if (next[key] != null) {
var value = next[key].toString().toLowerCase();

if (value.indexOf(this.filterText.toLowerCase()) > -1) {
Expand Down

0 comments on commit 4f9e242

Please sign in to comment.