46 Public method to get the converted JavaScript text. |
46 Public method to get the converted JavaScript text. |
47 |
47 |
48 @return JavaScript text (string) |
48 @return JavaScript text (string) |
49 """ |
49 """ |
50 dlg = Html5ToJsConverterParameterDialog() |
50 dlg = Html5ToJsConverterParameterDialog() |
51 if dlg.exec_() == QDialog.Accepted: |
51 if dlg.exec() == QDialog.Accepted: |
52 indentation, scriptTags = dlg.getData() |
52 indentation, scriptTags = dlg.getData() |
53 |
53 |
54 self.__createSoup() |
54 self.__createSoup() |
55 |
55 |
56 alreadyDone = list(self.TagsToIgnore) |
56 alreadyDone = list(self.TagsToIgnore) |