Skip to content

Commit

Permalink
FLUID-5589: Added to all-tests and dependencies
Browse files Browse the repository at this point in the history
also fixed a typo
  • Loading branch information
jobara committed Jan 23, 2015
1 parent 5bad2f8 commit 7251a72
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ By default, custom packages are given a name with the form _infusion-custom-<ver
* tableOfContents
* tabs
* textfieldSlider
* textToSpeech
* tooltip
* uiOptions
* undo
Expand Down
4 changes: 2 additions & 2 deletions src/components/textToSpeech/js/TextToSpeech.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ var fluid_2_0 = fluid_2_0 || {};
}
});

fluid.textToSpeech.speak = function (that, text, interupt, options) {
if (interupt) {
fluid.textToSpeech.speak = function (that, text, interrupt, options) {
if (interrupt) {
that.cancel();
}

Expand Down
1 change: 1 addition & 0 deletions tests/all-tests.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"./component-tests/tableOfContents/html/TableOfContents-test.html",
"./component-tests/slidingPanel/html/SlidingPanel-test.html",
"./component-tests/textfieldSlider/html/TextfieldSlider-test.html",
"./component-tests/textToSpeech/html/TextToSpeech-test.html",
"./component-tests/tabs/html/Tabs-test.html",
"./component-tests/tooltip/html/Tooltip-test.html",
"./component-tests/uiOptions/html/UIOptions-test.html",
Expand Down

0 comments on commit 7251a72

Please sign in to comment.