You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for example the object: { templateUrl: "/app/template.html"} is an app setting because it will not be modified by the user.
However the object: card = { name: "bookmarks", enabled: true; } is gonna be modified by the user.
The goal is to better separated theses settings to make the update process easier.
Maybe separated them in one angular.values() for user settings and one angular.constant() for app settings.
This way when updating cardboard, app settings are automatically new. While user settings are kept if compatible (ie. not "major" version as semver describes it)
The text was updated successfully, but these errors were encountered:
for example the object: { templateUrl: "/app/template.html"} is an app setting because it will not be modified by the user.
However the object: card = { name: "bookmarks", enabled: true; } is gonna be modified by the user.
The goal is to better separated theses settings to make the update process easier.
Maybe separated them in one angular.values() for user settings and one angular.constant() for app settings.
This way when updating cardboard, app settings are automatically new. While user settings are kept if compatible (ie. not "major" version as semver describes it)
The text was updated successfully, but these errors were encountered: