html: Security restricted macro is not allowed. An edit restriction is required that matches the macro authorization list.
<style>
.hidable
Unknown macro: {display}
</style>
<script>
html: Security restricted macro is not allowed. An edit restriction is required that matches the macro authorization list.
function showhide(section){
var ele=document.getElementById(section);
if(ele.style.display!="block") {
ele.style.display="block";
document.getElementById(section+"show").innerHTML = "Hide this design";
} else
Unknown macro: { ele.style.display="none"; document.getElementById(section+"show").innerHTML = "Show this design"; }}
</script>
GR3 - Paper Prototyping
1. Scenario given to the users
2. Tasks requested to the user
3. Description of the initial prototype
html: Security restricted macro is not allowed. An edit restriction is required that matches the macro authorization list. <a href="javascript:showhide('design1');" id="design1show">Show this design</a>
html: Security restricted macro is not allowed. An edit restriction is required that matches the macro authorization list. <div id="design1" class="hidable">
1)test:
html: Security restricted macro is not allowed. An edit restriction is required that matches the macro authorization list. </div>
4. Prototype testing
4.1 First Round
User 1:
html: Security restricted macro is not allowed. An edit restriction is required that matches the macro authorization list. <a href="javascript:showhide('design2');" id="design2show">Show this design</a>
html: Security restricted macro is not allowed. An edit restriction is required that matches the macro authorization list. <div id="design2" class="hidable">
- Observations: *
- Changes made to the prototype after this test: *
html: Security restricted macro is not allowed. An edit restriction is required that matches the macro authorization list. </div>