Skip to content
This repository has been archived by the owner on Sep 29, 2020. It is now read-only.

Commit

Permalink
Fix: replace dots in namespace with slash to resolve correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
cevou committed Jan 31, 2017
1 parent 919d735 commit 2e6eef9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/redux/ReduxModel.js
Expand Up @@ -17,7 +17,7 @@ sap.ui.define([
var that = this;

this.oStore = oStore;
this.sSelectorRoot = sSelectorRoot ? sSelectorRoot + '/' : '';
this.sSelectorRoot = sSelectorRoot ? sSelectorRoot.replace(/\./g, '/') + '/' : '';
this.sDefaultBindingMode = BindingMode.OneWay;
this.mSupportedBindingModes = { OneWay: true, TwoWay: false, OneTime: false };

Expand Down
2 changes: 1 addition & 1 deletion dist/redux/library-preload.js

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
@@ -1,6 +1,6 @@
{
"name": "openui5-redux-model",
"version": "0.1.0",
"version": "0.1.2",
"license": "Apache-2.0",
"author": "Christoph Kraemer <chr.kraemer@sap.com>",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion src/redux/ReduxModel.js
Expand Up @@ -17,7 +17,7 @@ sap.ui.define([
var that = this;

this.oStore = oStore;
this.sSelectorRoot = sSelectorRoot ? sSelectorRoot + '/' : '';
this.sSelectorRoot = sSelectorRoot ? sSelectorRoot.replace(/\./g, '/') + '/' : '';
this.sDefaultBindingMode = BindingMode.OneWay;
this.mSupportedBindingModes = { OneWay: true, TwoWay: false, OneTime: false };

Expand Down

0 comments on commit 2e6eef9

Please sign in to comment.