-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #428 from smartdevicelink/release/1.3.0_RC
Release/1.3.0
- Loading branch information
Showing
507 changed files
with
12,455 additions
and
1,063 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// ------ Not part of the RPC spec itself ----- | ||
|
||
/** | ||
* Set the Template | ||
* @deprecated Use setTemplateParam instead | ||
* @param {String} template - Predefined or dynamically created window template. Currently only predefined window template layouts are defined. - The desired Template. | ||
* {'string_min_length': 1, 'string_max_length': 500} | ||
* @returns {TemplateConfiguration} - The class instance for method chaining. | ||
*/ | ||
setTemplate (template) { | ||
this.setParameter(TemplateConfiguration.KEY_TEMPLATE, template); | ||
return this; | ||
} | ||
|
||
/** | ||
* Get the Template | ||
* @deprecated Use getTemplateParam instead | ||
* @returns {String} - the KEY_TEMPLATE value | ||
*/ | ||
getTemplate () { | ||
return this.getParameter(TemplateConfiguration.KEY_TEMPLATE); | ||
} | ||
|
||
// ----------------- END ----------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.