Zeeshan Jan

Results 26 comments of Zeeshan Jan

Thanks @cedricblondeau you made my day. I was trying on angular 1.4 and after setting height everything worked fine

After analyzing I found that the reason is this error ``` js humanizeDuration is not defined ``` However I have installed it and referenced it . I am using system.js...

I am facing the same issue , has anyone found the fix?

I was able to fix the issue. I used this line of code instead: ` console.log(stateToHTML(this.state.content.getCurrentContent())); `

facing the same issue. Is there any work around to replace PATH_INFO

I am still facing the same issue. Any fix for this.

I have narrowed down the issue and now with only this simple app I am getting the same issue: My app.ts source code is: ``` js import 'babel/external-helpers'; import *...

Actually I am trying to implement this requirement: The user will define the dimensions of the buttons on my web page in cm/mm (in database) and I need to display...

Following is my issue: ``` js var dppx = window.devicePixelRatio || (window.matchMedia && window.matchMedia("(min-resolution: 2dppx), (-webkit-min-device-pixel-ratio: 1.5),(-moz-min-device-pixel-ratio: 1.5),(min-device-pixel-ratio: 1.5)").matches? 2 : 1) || 1; var w = screen.width * dppx;...

As per the formula https://en.wikipedia.org/wiki/Display_size I tried to calculate the diagonal size from the height and width but then the issue comes which I think is related to converting pixels...