Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Commit

Permalink
Merge pull request #144 from feedhenry/remove-push-override
Browse files Browse the repository at this point in the history
remove override of push function
  • Loading branch information
jasonmadigan committed Nov 25, 2015
2 parents bca67e4 + bb1e593 commit 12f0b9b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,8 @@
# Changelog - FeedHenry Javascript SDK

## 2.12.0 - 2015-11-24 - Erik Jan de Wit
* RHMAP-2970 - Removed api override

## 2.11.0 - 2015-10-15 - Wei Li
* RHMAP-2455 - Fix a few issues with the sync framework
* Make sure the user changes are not reverted if cloud is slow to response
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "fh-js-sdk",
"version": "2.11.0",
"version": "2.12.0",
"description": "feedhenry js sdk",
"main": "dist/feedhenry.js",
"browser": {
Expand Down
9 changes: 1 addition & 8 deletions src/appforms/src/core/000-api-v2.js
Expand Up @@ -1506,9 +1506,6 @@
file: function(p, s, f) {
f('file_nosupport');
},
push: function(p, s, f) {
f('push_nosupport');
},
env: function(p, s, f) {
s({
height: window.innerHeight,
Expand Down Expand Up @@ -1898,10 +1895,6 @@
}, $fh.__dest__.file);
};

$fh.push = function() {
handleargs(arguments, {}, $fh.__dest__.push);
};

// new functions
$fh.env = function() {
handleargs(arguments, {}, function(p, s, f) {
Expand Down Expand Up @@ -2098,4 +2091,4 @@

root.$fh = $fh;

})(this);
})(this);

0 comments on commit 12f0b9b

Please sign in to comment.