Skip to content
This repository was archived by the owner on Sep 18, 2024. It is now read-only.

Commit 8acbe76

Browse files
author
Gregor Adams
committed
add readonly support to inputs
1 parent 72943bb commit 8acbe76

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

examples/.meteor/versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ [email protected]
1212
1313
1414
15-
codefights:[email protected].9
15+
codefights:[email protected].10
1616
1717
1818

lib/paper-elements/PaperInput/PaperInputContainer.tpl.jade

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,17 @@ paper-input-container(class=className
1010
class="paper-input"
1111
disabled=disabled
1212
rows="1"
13-
placeholder=placeholder)= value
13+
placeholder=placeholder
14+
readonly=readonly)= value
1415
else
1516
input(type=type
1617
name=name
1718
data-id="input"
1819
class="paper-input"
1920
value=value
2021
disabled=disabled
21-
placeholder=placeholder)
22+
placeholder=placeholder
23+
readonly=readonly)
2224
div(class="underline paper-input-container #{highlight.get}")
2325
div(class="unfocused-line fit paper-input-container")
2426
div(class="focused-line fit paper-input-container")

package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package.describe({
22
name: 'codefights:blaze-material-ui',
3-
version: '0.1.9',
3+
version: '0.1.10',
44
// Brief, one-line summary of the package.
55
summary: 'Material design components for blaze',
66
// URL to the Git repository containing the source code for this package.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "blaze-material-ui",
3-
"version": "0.1.9",
3+
"version": "0.1.10",
44
"description": "blaze components for material design",
55
"main": "Gulpfile.js",
66
"directories": {

0 commit comments

Comments
 (0)