pict 1.0.65 → 1.0.66

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/source/Pict.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pict",
3
- "version": "1.0.65",
3
+ "version": "1.0.66",
4
4
  "description": "Pict browser library.",
5
5
  "main": "source/Pict.js",
6
6
  "scripts": {
package/source/Pict.js CHANGED
@@ -74,11 +74,11 @@ class Pict extends libFable
74
74
 
75
75
  if (typeof(pApplicationPrototype) != 'undefined')
76
76
  {
77
- return this.serviceManager.instantiateServiceProviderFromPrototype('PictView', tmpOptions, tmpApplicationHash, pApplicationPrototype);
77
+ return this.serviceManager.instantiateServiceProviderFromPrototype('PictApplication', tmpOptions, tmpApplicationHash, pApplicationPrototype);
78
78
  }
79
79
  else
80
80
  {
81
- return this.serviceManager.instantiateServiceProvider('PictView', tmpOptions, tmpApplicationHash);
81
+ return this.serviceManager.instantiateServiceProvider('PictApplication', tmpOptions, tmpApplicationHash);
82
82
  }
83
83
  }
84
84