sr-npm 1.7.884 → 1.7.885

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sr-npm",
3
- "version": "1.7.884",
3
+ "version": "1.7.885",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/pages/homePage.js CHANGED
@@ -90,13 +90,13 @@ function bindViewAllButton(_$w) {
90
90
  _$w('#viewAllCategoriesButton').onClick(()=>{
91
91
  if(!loadedCategories) {
92
92
  loadedCategories=true;
93
- _$w('#viewAllCategoriesButton').label = "View All";
93
+ _$w('#viewAllCategoriesButton').label = "View Less";
94
94
  _$w("#categoriesDataset").loadMore();
95
95
  console.log("categories loaded");
96
96
  }
97
97
  else{
98
98
  loadedCategories=false;
99
- _$w('#viewAllCategoriesButton').label = "View Less";
99
+ _$w('#viewAllCategoriesButton').label = "View All";
100
100
  _$w("#categoriesDataset").loadPage(1);
101
101
  console.log("categories reseted");
102
102
  }